/* default customization */
body {
  font-family: "Lato", sans-serif;
  color: #444;
  box-sizing: border-box;
  font-weight: 400;
}

ul {
  list-style: none;
}

::selection {
  background-color: rgba(145, 158, 255, 0.5);
}

.nohover {
  pointer-events: none;
}

.overlay {
  background-color: transparent;
}

/* end default customization */

/* start dashboard body */
.dashboard-body {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

/* end dashboard body */

/* start side nav bar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 0;
  background-color: #53affd;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  padding: 80px 0;
  /* no right or left */
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 9999;
  /* text-align: center; */
  /* for scroll bar */
  direction: rtl;
  transition: all 0.2s ease;
}

.sidebar.active {
  width: 280px;
}

.sidebar::-webkit-scrollbar {
  width: 7px;
  border-radius: 30px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}

.sidebar:hover::-webkit-scrollbar-thumb {
  background: #f6f8fc;
}

/* .sidebar::-webkit-scrollbar-track-piece:end {
  background: transparent;
  margin-bottom: 300px; 
} */
.sidebar>* {
  direction: ltr;
}

.sidebar .user-info {
  margin-bottom: 45px;
  text-align: center;
  color: #f6f8fc;
}

.sidebar .user-info h1 {
  font-size: 20px;
  margin-bottom: 42px;
}

.sidebar .user-image {
  display: inline-block;
  background: #f6f8fc;
  height: 70px;
  width: 70px;
  padding: 5px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.sidebar .user-image div {
  background-image: url(https://images.pexels.com/photos/1130623/pexels-photo-1130623.jpeg?cs=srgb&dl=adorable-adult-beautiful-1130623.jpg&fm=jpg);
  background-size: cover;
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.sidebar .user-name p {
  margin-top: -12px;
}

.sidebar nav {
  color: #f6f8fc;
  padding: -1px 18px;
  text-transform: uppercase;
}

.sidebar nav ul {
  margin-bottom: 100px;
  padding: 0 18px;
}

.sidebar nav ul li {
  display: flex;
  margin-bottom: 30px;
  cursor: pointer;
  padding: 0px 5px;
  border: transparent;
  height: 55px;
}

.sidebar nav ul li.active {
  background-color: #ffffff;
  color: #53affd;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 110%;
  transition: width 0.3s ease;
}

.sidebar nav ul li:hover {
  background-color: #ffffff;
  color: #53affd;
  border-radius: 40px;
  width: 88%;
  height: 55px;
  transition: all 0.5s ease;
}

.sidebar nav ul li i {
  font-size: 15px;
  padding-right: 10px;
  margin-left: 5px;
  position: relative;
  top: 19px;
}

.sidebar nav ul li p {
  font-size: 16px;
  padding-right: 10px;
  position: relative;
  font-weight: 700;
  padding-left: 5px;
}

.sidebar nav ul li span {
  color: #53affd;
  background-color: #f6f8fc;
  padding: 1px 9px;
  border-radius: 49px;
  margin-left: 13px;
}

.sidebar nav ul li:hover span {
  color: #f6f8fc;
  background-color: #53affd;
}

.sidebar .navbar-end {
  min-height: 200px;
  background-color: #53affd;
  color: #f6f8fc;
  text-align: center;
}

.sidebar .navbar-end .logout a {
  text-decoration: none;
  color: #f6f8fc;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  border: transparent;
}

.sidebar .navbar-end .logout a p {
  padding-left: 20px;
  font-size: 18px;
  font-weight: bold;
}

.sidebar .navbar-end a:hover {
  background-color: #f6f8fc;
  color: #53affd;
  border-radius: 30px;
  transition: all 0.6s ease;
  width: 50%;
}

.sidebar .navbar-end a:hover i {
  color: red;
}

.bottom-curve {
  /* width: 100%;
  height: 40px;
  background-color: red;
  border-bottom-right-radius: 15px; */
}

/* end side nav bar */


/* start main data */
.main-data::-webkit-scrollbar {
  width: 7px;
  border-radius: 30px;
}

.main-data::-webkit-scrollbar-track {
  background: transparent;
}

.main-data::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}

.main-data:hover::-webkit-scrollbar-thumb {
  background: #53affd;
}

.main-data {
  height: 100vh;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 40px;
  transition: 0.5s ease-in-out;
}

.main-data.active {
  margin-left: 265px;
  padding-left: 30px;
  transition: 0.5s ease-in-out;
}

/* start navigation icons */
.nav-icons {
  display: flex;
  justify-content: flex-end;
}

.nav-icons ul {
  display: flex;
  margin-right: -35px;
}

.nav-icons ul li {
  margin: 25px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  color: #aaa;
  font-size: 20px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.nav-icons ul li:hover {
  background-color: #53affd;
  color: #ffffff;
  transition: all 0.6s ease;
}

.nav-icons ul li:nth-child(2) {
  position: relative;
}

.nav-icons ul li:nth-child(2)::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 7px;
  /* left: 0; */
  right: 10px;
  background-color: red;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.nav-icons ul li:nth-child(2)::after :hover {
  background-color: #f6f8fc;
}

/* end navigation icons */

/* start overall section */
.overall {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.overall ul {
  display: flex;
}

.overall ul li {
  margin: 0 10px;
  padding: 0 10px;
  position: relative;
  cursor: pointer;
  font-size: 17px;
}

.overall ul li.active {
  color: #53affd;
}

.overall ul li.active::after,
.overall ul li::after {
  content: "";
  position: absolute;
  top: 25px;
  left: calc(50% - 22px);
  background-color: #53affd;
  border-radius: 5px;
  height: 3px;
  width: 0px;
  transition: all 0.5s ease;
}

.overall ul li.active:hover:after {
  left: 0;
  width: 100%;
}

.overall ul li:hover {
  color: #53affd;
  transition: 0.5s;
}

.overall ul li:hover::after {
  content: "";
  position: absolute;
  top: 25px;
  left: calc(50% - 22px);
  background-color: #53affd;
  border-radius: 5px;
  height: 3px;
  width: 0px;
  transition: all 0.5s ease;
}

.overall ul li:hover:after {
  left: 0;
  width: 100%;
}

/* end overall section */

/* start statistics card */
.card-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* align-items: stretch; */
}

.card {
  flex-basis: 20%;
  padding: 0 20px;
  margin-bottom: 50px;
  background-color: #77d776;
  border-radius: 15px;
  -webkit-box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
  -moz-box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
  box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
  overflow: hidden;
}

.card:nth-of-type(2) {
  background-color: #919eff;
}

.card:nth-of-type(3) {
  background-color: #ff86ec;
}

.card:nth-of-type(4) {
  background-color: #feb177;
}

.card-content::before {
  content: '';
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -30px;
  background: rgba(246, 248, 252, 0.39);
  /* overflow: hidden; */
}

.card-content {
  /* padding: 1px 15px; */
  /* background-color: #77d776; */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  position: relative;
}

.card-content::after {
  content: '';
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: absolute;
  top: 25px;
  left: -40px;
  background: rgba(246, 248, 252, 0.39);
  overflow: hidden;
}

.card-title h4 {
  font-size: 18px;
  color: #f6f8fc;
  margin-bottom: 30px;
}

.card-number span {
  font-weight: 700;
  font-size: 25px;
}

.card-number i {
  font-size: 18px;
  margin-left: 5px;
}

.card-icon i {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(246, 248, 252, 0.3);

}

/* end statistics card */

/* start charts */

.charts {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.charts .chart-card.bars {
  width: 53%;
  height: 500px;
  background-color: #f6f8fc;
  border-radius: 15px;
  -webkit-box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
  -moz-box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
  box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
}

.charts .chart-card.bars .chart-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.charts .chart-card.bars .chart-title h6 {
  font-size: 19px;
  font-weight: bold;
  padding: 0 20px;
}

.charts .chart-card.bars .chart-title>div {
  display: flex;
}

.charts .chart-card.bars .chart-title .fan-type {
  justify-content: center;
  display: flex;
  margin-right: 10px;
}

.charts .chart-card.bars .chart-title .fan-type p {
  position: relative;
  line-height: 2.1;
  color: #777777;
}

.charts .chart-card.bars .chart-title .fan-type p::before {
  content: '';
  position: absolute;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  /* background-color: #feb177; */
  top: calc(50% - 3px);
  left: -16px;
}

.charts .chart-card.bars .chart-title .fan-type p.male::before {
  background-color: #feb177;
}

.charts .chart-card.bars .chart-title .fan-type p.female {
  margin-left: 40px;
}

.charts .chart-card.bars .chart-title .fan-type p.female::before {
  background-color: #919eff;
}

.charts .chart-card.bars .chart-title .dropdown {
  display: inline-block;
  position: relative;
}

.charts .chart-card.bars .chart-title .dropdown p {
  display: inline-block;
  cursor: pointer;
  padding: 8px 15px;
  background-color: rgba(51, 51, 51, 0.03);
  border-radius: 18px;
  margin-right: 15px;
}

.charts .chart-card.bars .chart-title .dropdown .drop-menu {
  position: absolute;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 150px;
  z-index: 99;
  visibility: hidden;
  background-color: #f6f8fc;
}

.charts .chart-card.bars .chart-title .dropdown .drop-menu.active {
  visibility: visible;
}

.charts .chart-card.bars .chart-title .dropdown .drop-menu::-webkit-scrollbar {
  width: 7px;
  border-radius: 30px;
}

.charts .chart-card.bars .chart-title .dropdown .drop-menu::-webkit-scrollbar-track {
  background: transparent;
}

.charts .chart-card.bars .chart-title .dropdown .drop-menu::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}

.charts .chart-card.bars .chart-title .dropdown .drop-menu:hover::-webkit-scrollbar-thumb {
  background: #aaa;
}

.charts .chart-card.bars .chart-title .dropdown .drop-menu ul {
  padding-left: 0;
}

.charts .chart-card.bars .chart-title .dropdown .drop-menu ul li {
  cursor: pointer;
  padding: 20px 0;
  width: 10rem;
  font-size: 18px;
  text-align: center;
}

.charts .chart-card.bars .chart-title .dropdown .drop-menu ul li.active {
  background-color: rgba(51, 51, 51, 0.07);
  width: 100%;
}

.charts .chart-card.bars .chart-title .dropdown .drop-menu ul li:hover {
  cursor: pointer;
  background-color: rgba(51, 51, 51, 0.07);
}

/* end bars */

/* start pie */
.charts .chart-card.pie {
  width: 36%;
  height: 500px;
  background-color: #f6f8fc;
  border-radius: 15px;
  -webkit-box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
  -moz-box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
  box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
}

.charts .chart-card.pie .chart-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.charts .chart-card.pie .chart-title h6 {
  font-size: 19px;
  font-weight: bold;
  padding: 0 20px;
}

.charts .chart-card.pie .chart-title>div {
  display: flex;
}

.charts .chart-card.pie .chart-title .dropdown {
  display: inline-block;
  position: relative;
}

.charts .chart-card.pie .chart-title .dropdown p {
  display: inline-block;
  cursor: pointer;
  padding: 8px 15px;
  background-color: rgba(51, 51, 51, 0.03);
  border-radius: 18px;
  margin-right: 15px;
}

.charts .chart-card.pie .chart-title .dropdown .drop-menu {
  position: absolute;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 150px;
  z-index: 99;
  visibility: hidden;
  background-color: #f6f8fc;
}

.charts .chart-card.pie .chart-title .dropdown .drop-menu.active {
  visibility: visible;
}

.charts .chart-card.pie .chart-title .dropdown .drop-menu::-webkit-scrollbar {
  width: 7px;
  border-radius: 30px;
}

.charts .chart-card.pie .chart-title .dropdown .drop-menu::-webkit-scrollbar-track {
  background: transparent;
}

.charts .chart-card.pie .chart-title .dropdown .drop-menu::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}

.charts .chart-card.pie .chart-title .dropdown .drop-menu:hover::-webkit-scrollbar-thumb {
  background: #aaa;
}

.charts .chart-card.pie .chart-title .dropdown .drop-menu ul {
  padding-left: 0;
}

.charts .chart-card.pie .chart-title .dropdown .drop-menu ul li {
  cursor: pointer;
  padding: 20px 0;
  width: 10rem;
  font-size: 18px;
  text-align: center;
}

.charts .chart-card.pie .chart-title .dropdown .drop-menu ul li.active {
  background-color: rgba(51, 51, 51, 0.07);
  width: 100%;
}

.charts .chart-card.pie .chart-title .dropdown .drop-menu ul li:hover {
  cursor: pointer;
  background-color: rgba(51, 51, 51, 0.07);
}


.pie-cards-con {
  display: flex;
  margin-top: 60px;
}

.pie-cards-con .pie-card {
  width: 100%;
  padding: 0 0.5rem;
  text-align: center;
  min-width: 110px;
  /* border: 1px solid red; */
  overflow: hidden;
}

.pie-cards-con .pie-card p:first-of-type {
  display: inline-block;
  color: #666666;
  font-size: 17px;
  padding-left: 0.6rem;
  position: relative;
  margin: 3px;
}

.pie-cards-con .pie-card p:first-of-type::before {
  position: absolute;
  content: '';
  top: calc(50% - 5px);
  left: -10px;
  height: 10px;
  width: 10px;
  border-radius: 3px;
  background-color: dodgerblue;
}


.pie-cards-con .pie-card p:nth-of-type(2) {
  font-weight: 700;
  font-size: 32px;
  margin: 3px;
}

.pie-cards-con .pie-card p:nth-of-type(3) {
  font-size: 18px;
  color: #666666;
  margin: 2px 1px;
}

.pie-cards-con .pie-card p.two::before {
  background-color: #feb177;
}

.pie-cards-con .pie-card p.three::before {
  background-color: #77d776;
}

/* end pie */
/* end charts */

/* start table section */

.table {
  margin-bottom: 50px;
  padding: 0 20px;
  background-color: #f6f8fc;
  -webkit-box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
  -moz-box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
  box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
}

.table .table-card {
  padding: 16px;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
  -moz-box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
  box-shadow: 6px 10px 24px -2px rgba(219, 212, 219, 1);
}

.table .table-card .table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table .table-card .table-header h5 {
  font-size: 19px;
  font-weight: bold;
}

.table .table-card .table-header .dropdown {
  display: inline-block;
  position: relative;
}

.table .table-card .table-header .dropdown p {
  display: inline-block;
  cursor: pointer;
  padding: 8px 15px;
  background-color: rgba(51, 51, 51, 0.03);
  border-radius: 18px;
  margin-right: 15px;
}

.table .table-card .table-header .dropdown .drop-menu {
  position: absolute;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 150px;
  z-index: 99;
  visibility: hidden;
  background-color: #f6f8fc;
}

.table .table-card .table-header .dropdown .drop-menu.active {
  visibility: visible;
}

.table .table-card .table-header .dropdown .drop-menu::-webkit-scrollbar {
  width: 7px;
  border-radius: 30px;
}

.table .table-card .table-header .dropdown .drop-menu::-webkit-scrollbar-track {
  background: transparent;
}

.table .table-card .table-header .dropdown .drop-menu::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}

.table .table-card .table-header .dropdown .drop-menu:hover::-webkit-scrollbar-thumb {
  background: #aaa;
}

.table .table-card .table-header .dropdown .drop-menu ul {
  padding-left: 0;
}

.table .table-card .table-header .dropdown .drop-menu ul li {
  cursor: pointer;
  padding: 20px 0;
  width: 10rem;
  font-size: 18px;
  text-align: center;
}

.table .table-card .table-header .dropdown .drop-menu ul li.active {
  background-color: rgba(51, 51, 51, 0.07);
  width: 100%;
}

.table .table-card .table-header .dropdown .drop-menu ul li:hover {
  cursor: pointer;
  background-color: rgba(51, 51, 51, 0.07);
}

.table .table-content {
  max-height: 450px;
  overflow-x: auto;
  overflow-y: auto;
}

.table .table-content::-webkit-scrollbar {
  width: 7px;
  border-radius: 30px;
}

.table .table-content::-webkit-scrollbar-track {
  background: transparent;
}

.table .table-content::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}

.table .table-content:hover::-webkit-scrollbar-thumb {
  background: #53affd;
}

.table .table-content .table-first {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(64, 64, 64, 0.1);
  min-width: 90%;
  padding: 10px 0;

}

.table .table-content .table-first div {
  text-transform: capitalize;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.table .table-content .table-row {
  padding: 22px 0;
  display: flex;
  border-bottom: 1px solid rgba(64, 64, 64, 0.1);
  align-items: center;
}

.table .table-content .table-row div {
  text-transform: capitalize;
  width: 100%;
  font-size: 13px;
  text-align: center;
}


/* end table section */


















/* end main data*/