:root {
  --primary: #00b34f;
  --primaryLight: #02e665;
  --primaryLight2: #e6f8ee;
  --secondary: #144394;
  --secondaryLight: #1152c3;
  --secondaryLight2: #f4f8ff;
  --yellow: #fab437;
  --light: #f6f9ff;
  --greyLight: #ecf1fc;
  --greyLight2: #f2f4f7;
  --greyLight3: #f9f5ff;
  --greyLight4: #eaecf0;
  --cardBg: #f9fafb;
  --border: #ebebeb;
  --border2: #c1c1c1;
  --link: #5f6d85;
  --inputColor: #8f99ab;
  --muted: #79797b;
  --dark: #000000;
  --white: #ffffff;
  --white_50: #e9e9e9;
  --red: #ff3232;
  --star_color: #fab437;
  --footerbg: #355389;
  --white: #ffffff;
  --font: "Poppins", sans-serif;
}

.profile_tabs_container {
  max-width: 100%;
  overflow: auto;
  background-color: #f9fafb;
}
.profile_tabs_container .profile_tabs {
  display: flex;
  flex-wrap: wrap;
  border: 0;
}
.profile_tabs_container .profile_tabs .nav-item {
  width: 25%;
  border-bottom: 2px solid transparent;
}
.profile_tabs_container .profile_tabs .nav-item .nav-link {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: 0;
  color: #000000;
  margin-bottom: 0.1rem;
}
.profile_tabs_container .profile_tabs .nav-item .nav-link.active {
  color: var(--secondary);
  background-color: var(--secondaryLight2);
}
.profile_tabs_container .profile_tabs .nav-item:has(.active) {
  border-bottom-color: var(--secondary);
}

.profile_img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  border: 3px solid var(--greyLight);
  border-radius: 50%;
}

.profile_name {
  font-size: 1.25rem;
  font-weight: 700;
}

.profile_inptut {
  height: 55px;
  font-size: 1rem;
  border-color: #d0d5dd;
  border-radius: 10px;
}
.profile_inptut.error {
  border-color: var(--red);
  color: var(--red);
}

@media screen and (max-width: 1024px) {
  .profile_tabs_container {
    scrollbar-width: none;
    scrollbar-color: none;
  }
  .profile_tabs_container::-webkit-scrollbar {
    scrollbar-width: 0;
    width: 0;
    height: 0;
    opacity: 0;
  }
  .profile_tabs_container .profile_tabs {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    min-width: max-content;
    gap: 1rem;
  }
  .profile_tabs_container .profile_tabs .nav-item {
    min-width: max-content;
  }
  .profile_tabs_container .profile_tabs .nav-item .nav-link {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.9rem;
  }
  .profile_img {
    width: 120px;
    height: 120px;
  }
  .profile_name {
    font-size: 1rem;
  }
  .profile_inptut {
    height: 50px;
    font-size: 0.9rem;
  }
}
.inline_chart {
  max-width: 55%;
}

.profile_pie_chart canvas {
  max-width: 100%;
}

.profile_line_chart {
  height: 100%;
}
.profile_line_chart canvas {
  min-height: 300px;
}

.custom_legend {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.custom_legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 13px;
}
.custom_legend span .bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  justify-content: flex-start;
  align-items: center;
  border-radius: 50%;
}

.profile_study_nav {
  position: -webkit-sticky;
  position: sticky;
  top: -50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.profile_study_nav .link {
  display: block;
  padding: 1rem;
  background-color: #f9fafb;
  text-align: center;
  border-radius: 8px;
  color: #000000;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1199px) {
  .profile_study_nav .link {
    font-size: 0.9rem;
  }
}
.profile_study_nav .link:hover {
  background-color: var(--secondaryLight2);
}
.profile_study_nav .link.active {
  background-color: var(--secondaryLight2);
  color: var(--secondary);
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .profile_payment_table {
    min-width: 660px;
  }
  .profile_payment_table .name_col {
    width: 175px;
  }
}

/*# sourceMappingURL=profile.css.map */
