@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

:root {
  --primary: #002d62;
  --secondary: #001b3a;
  --dark: #36454f;
  --light: #f1ece6;
  --gold: #ffb547;
  --gold-dark: #fca21c;
  --light-dark: #666666;
  --slight-pinkish: #fcfafa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
}



.student_dashboard_free_trial {
  background-color: #fff !important;
}




/********************* DASHBOARD  *********************/

.student-dashboard-section {
  position: relative;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  height: auto;
}

header {
  margin-bottom: 80px;
}

.student-dashboard-section .banner-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 200px;
  padding: 26px;
  background-image: url(../images/banner-bg-image.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}

.student-recap-section .banner-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 200px;
  padding: 26px;
  background-image: url(../images/banner-bg-image.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}

.student-recap-section-overview .banner-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 200px;
  padding: 26px;
  background-image: url(../images/banner-bg-image.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}

.student-recap-section-sessionSummary .banner-wrapper {
  background-color: #001b3a;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 200px;
  padding: 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}

.student-recap-section-subjectPerformanceBreakdown .banner-wrapper {
  background-color: #001b3a;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 200px;
  padding: 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}

.student-recap-section-learningObjectiveBreakdown .banner-wrapper {
  background-color: #001b3a;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 200px;
  padding: 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}

.student-recap-section-reviewQuestions .banner-wrapper {
  background-color: #001b3a;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 200px;
  padding: 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}

.heatmap-section {
  color: #001b3a;
}

.custom-subject-table {
  overflow: hidden;
}

/* Status badge pill (image only) */
.status-badge {
  width: 220px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 999px;
}

/* Image Backgrounds */
.status-green {
  background-image: url("../../static/images/green-status.png");
}

.status-orange {
  background-image: url("../../static/images/orange-status.png");
}

.status-red {
  background-image: url("../../static/images/red-status.png");
}

.custom-scroll-hide {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  padding-right: 6px;
}

/* Hide scrollbar for Chrome, Edge, Safari */
.custom-scroll-hide::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

/* Hide scrollbar for Firefox */
.custom-scroll-hide {
  scrollbar-width: none; /* Firefox */
}

.graduation-cap-image-box {
  position: absolute;
  top: -100px;
  left: 0;
  width: 200px;
  height: 200px;
}


@media (max-width: 991px) {
  .graduation-cap-image-wrapper {
    height: 72px;
  }
  .graduation-cap-image-box {
    position: relative;
    margin: 0 auto;
    top: -70px;
    width: 120px;
    height: 120px;
  }
  .banner-text-content-wrapper h3{
    font-size: 1.4rem;
  }
}

.graduation-cap-image-box img {
  width: 100%;
  height: 100%;
}

.outer-bar {
  background-color: var(--light-dark);
  padding: 2px 0;
}

.inner-bar {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--secondary);
}

.card-progress span {
  font-weight: 700;
  font-size: 14px;
  color: var(--light-dark);
}

.card-progress label{
  font-size: 1.5rem;
}

.card-exam {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 4px #00000040;
}

.card-exam-img-box {
  position: relative;
  width: 100%;
  height: 300px;
  /* min-height: 300px; */
  border-radius: 20px;
  object-fit: cover;
  overflow: hidden;
}

.card-exam-img-box img {
  width: 100%;
  height: auto;
}

/********************* / DASHBOARD  *********************/

.student-class-list .avatar-group .avatar{
    width: 24px !important;
    height: 24px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary) !important;
    line-height: 1;
    border-radius: 50%;
    object-fit: cover !important;
    font-size: 12px !important;
    font-weight: 900;
    margin-right: 10px !important;
    border: 1px solid var(--secondary) !important;
    background-color: var(--gold) !important;
    overflow: hidden;
}


.class-avatar-group {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
}


@media (max-width: 767px) {
  .card-title {
    font-size: 1rem !important;
  }
  .student-class-list .instructor-avatar.rounded-circle {
    width: 60px !important;
    height: 60px !important;
    bottom: -25px !important;
  }
  .student-class-list .instructor-avatar i {
    font-size: 24px !important;
  }
  .card-progress label{
    font-size: 1rem;
  }
}


/********************* STUDY MATERIAL *********************/
.study-material-review-subjects-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url(../images/Lines3.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: auto;
  padding-bottom: 220px;
  overflow: hidden;
}

.knowledge-text-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-color: #103251;
  padding-top: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.knowledge-text-box {
  position: absolute;
  width: 100%;
  max-width: 1000px;
  height: 200px;
  left: 50%;
  top: -20%;
  background-color: var(--gold);
  border-radius: 10px;
  transform: translate(-50%, -12%);
}

.knowledge-svg-box {
  margin-top: -80px;
}

@media (max-width: 1150px) {
  .knowledge-text-box {
    max-width: 90%;
    height: 150px;
  }

  .knowledge-svg-box {
    margin-top: -80px !important;
    margin-right: 20px;
  }

  .knowledge-svg-box svg {
    width: 250px !important;
    height: 250px !important;
  }
}

@media (max-width: 767px) {
  .knowledge-text-box h1 {
    font-size: 20px;
  }

  .knowledge-svg-box svg {
    width: 180px !important;
    height: 180px !important;
  }
}

/********************* / STUDY MATERIAL *********************/

/*********************  Account Settings  *********************/
.pages-settings-wrapper {
  padding-top: 135px !important;
}

@media (max-width: 991px) {
  .pages-settings-wrapper {
    padding-top: 55px !important;
  }
}

.student-account-section .nav-link {
  color: var(--secondary);
  font-weight: 900;
  text-align: start;
  padding: 6px 24px;
}

.student-account-section .tab-content .title-tab {
  position: absolute;
  top: 0%;
  left: 0;
  transform: translate(-8%, -300%);
}

.setting-avatar-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
}

.setting-avatar-box {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  background-color: #e8e8e8;
}

.setting-avatar-box i {
  font-size: 100px;
}

.setting-edit-btn {
  position: absolute;
  right: -50%;
  bottom: 0;
  border-radius: 100px;
  background-color: var(--gold);
  font-size: 35px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-185%, -50%);
}

.form-input-box {
  position: relative;
}

.form-input-box .form-label {
  position: absolute;
  top: -12px;
  left: 12px;
  background-color: var(--slight-pinkish);
  color: var(--secondary);
}

.form-input-box .form-control {
  background-color: var(--slight-pinkish);
}

.login-activity-description span::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 50%;
  left: -2px;
  top: 0;
  transform: translate(10%, 50%);
}

.login-activity-description.failed-activity span::before {
  background-color: #a61b1e;
}

.login-activity-description.success-activity span::before {
  background-color: #1ba625;
}

.tabar-btn-wrapper {
  width: 425px;
}

.tabar-btn-wrapper button {
  margin-bottom: 20px;
  font-weight: 900;
}

@media (max-width: 1200px) {
  .tabar-btn-wrapper {
    width: 100px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 100px !important;
    overflow: hidden;
  }

  .tabar-btn-wrapper button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 0px !important;
    margin-bottom: 0px;
  }

  .tabar-btn-wrapper button span {
    display: none;
  }
}

@media (max-width: 991px) {
  .tabar-btn-wrapper {
    width: 100%;
    max-width: 400px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 100px !important;
    overflow: hidden;
    margin: 0 auto;
  }

  .tabar-btn-wrapper button span {
    display: none;
  }

  .title-tab {
    display: none;
  }
}

/********************* / Account Settings  *********************/

/*********************  Study Material  *********************/
.study-material-header {
  position: relative;
  width: 100%;
  height: auto;
  background: url(../images/study-material-image.jpg) center / cover no-repeat;
}

/********************* / Study Material  *********************/

/*********************  Study Plan Page  *********************/
/* Calendar */
.student-study-plan-calendar {
  width: 100%;
  max-width: 1400px;
  height: 838px;
  margin: 0 auto;
  background-color: #fff;
  color: var(--secondary) !important;
  padding: 20px;
}

.calendar {
  max-width: 1000px !important;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.calendar-header {
  background: #004080;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-header button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
}

.calendar-days,
.calendar-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-days div {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
}

.calendar-body div {
  border: 1px solid #e0e0e0;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.calendar-body div.selected {
  background-color: #b3d9ff;
}

.calendar-body div.event-day {
  background-color: #ffebcc;
}

.fc-col-header-cell-cushion,
.fc-daygrid-day-number {
  color: var(--secondary) !important;
  font-weight: 800;
  font-size: 14px !important;
}

.fc-col-header-cell-cushion {
  padding: 8px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fc .fc-scrollgrid {
  width: auto !important;
  height: 100% !important;
}

.fc-col-header {
  width: 100% !important;
}

.fc-daygrid-body.fc-daygrid-body-unbalanced .fc-scrollgrid-sync-table {
  width: 100% !important;
  height: auto !important;
}

.fc-daygrid-day-top {
  display: unset !important;
  /* padding: 20px; */
}

.fc .fc-daygrid-day-frame {
  height: 115px !important;
  padding: 10px !important;
}

.fc-prev-button,
.fc-next-button {
  background-color: #fff !important;
  color: gray !important;
  border: none !important;
  outline: none !important;
  border-radius: 100px !important;
}

.fc-event-title-container {
  text-align: center !important;
}

.fc-prev-button:hover,
.fc-next-button:hover {
  color: var(--secondary) !important;
}

.fc .fc-button-primary:focus,
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
.fc .fc-button-primary:not(:disabled):active:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* /Calendar */
/********************* / Study Plan Page  *********************/

/*********************  Custom Schedule Page Page  *********************/
.Student-custom-schedule-section {
  position: relative;
  width: 100%;
  height: 100%;
  /* min-height: 140vh; */
  padding-bottom: 250px !important;
  overflow: hidden;
}

.daterangepicker-img1 {
  position: absolute;
  width: auto;
  height: auto;
  right: 0;
  top: 0;
  z-index: 1;
}
.daterangepicker-img1 img {
  width: 200px;
  height: auto;
}

.daterangepicker-img2 {
  position: absolute;
  width: 100%;
  height: auto;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.daterangepicker {
  position: relative !important;
  top: unset !important;
  left: unset !important;
  right: unset !important;
  width: 100% !important;
  padding: 20px;
  display: flex !important;
  z-index: 99 !important;
}
@media (max-width: 563px) {
  .daterangepicker {
    display: block !important;
  }
  .daterangepicker.show-ranges.ltr .drp-calendar.left {
    border-left: 0 !important;
    padding: 8px !important;
  }
}

.daterangepicker-wrapper {
  position: relative;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  border-radius: 50px;
  padding: 40px 0;
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 10px solid #001b3a6b;
  background-color: #fcfafa;
  box-shadow: 0px 21px 4.8px 10px #00000040;
  z-index: 9;
}
.daterangepicker-calendar-img {
  position: absolute;
  width: 300px;
  height: auto;
  right: -8%;
  bottom: -50%;
  z-index: 999;
  transform: translate(-15%, -118%);
}
.daterangepicker-calendar-img img {
  width: 100%;
  height: auto;
}
@media (max-width: 563px) {
  .daterangepicker-calendar-img {
    position: absolute;
    width: 250px;
    height: auto;
    right: 0;
    bottom: -43%;
    z-index: 999;
    transform: translate(-24%, -157%);
  }
}

#inline-daterangepicker {
  height: auto !important;
  width: 100% !important;
  max-width: 840px !important;
  background: #f5f5f5;
  box-shadow: 6px 9px 22.4px 0px #000000ab;

  border-radius: 30px;
  padding: 25px 45px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .daterangepicker-wrapper {
    padding: 24px;
  }
  #inline-daterangepicker {
    padding: 20px 20px !important;
  }
}

.ranges ul {
  display: none !important;
}

/* .drp-calendar,
    .calendar-table {
    width: 500px;
} */
.daterangepicker .drp-calendar {
  display: none;
  max-width: unset !important;
  height: auto !important;
  width: 100% !important;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 50px !important;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none !important;
}

.schedule-plan-button {
  padding: 12px;
  background: #ffffff;
  border: 2px solid #2e2f35;
  box-shadow: 3px 3px 0px 0px #001b3a;
  border-radius: 15px;
  color: var(--primary);
}

/********************* / Custom Schedule Page Page  *********************/

/*********************  Auto Schedule Page Page  *********************/
.Student-auto-schedule-section {
  position: relative;
  width: 100%;
  height: 100%;
  /* min-height: 140vh; */
  padding-bottom: 250px !important;
  overflow: hidden;
}

.auto-build-schedule-box {
  height: auto !important;
  width: 100% !important;
  max-width: 840px !important;
  background: #f5f5f5;
  box-shadow: 6px 9px 22.4px 0px #000000ab;
  border-radius: 30px;
  padding: 25px 45px;
  padding-top: 106px;
  margin: 0 auto;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 155% !important;
}

.noUi-tooltip {
  position: relative;
  background: #0e1f41;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 7px !important;
  padding: 2px 10px !important;
}

.noUi-tooltip:before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -3px;
  width: 8px;
  height: 8px;
  background: #fff;
  transform: rotate(45deg);
  z-index: 1;
  background-color: #0e1f41 !important;
}

.noUi-horizontal .noUi-handle {
  background: white;
  box-shadow: 0px 2px 4px 0px #0000001a;
  border: 1px solid #0000001a !important;
}

.noUi-horizontal {
  height: 8px !important;
}

.noUi-horizontal .noUi-handle {
  width: 20px !important;
  height: 20px !important;
  /* right: -16px !important; */
  top: -6px !important;
  border-radius: 100px;
}

.day-row {
  margin-bottom: 60px !important;
}

.noUi-base {
  background: #d4e7f4 !important;
  border: none !important;
  border-radius: 50px !important;
}

.noUi-target {
  border: none !important;
}

.noUi-handle:after,
.noUi-handle:before {
  display: none !important;
}
.noUi-horizontal .noUi-handle {
  background: white;
  border: 2px solid #0e1f41;
}

.noUi-target.noUi-ltr.noUi-horizontal.noUi-txt-dir-ltr {
  margin-bottom: 10px !important;
}

.Student-auto-schedule-section .daterangepicker-calendar-img {
  position: absolute;
  width: 300px;
  height: auto;
  right: -8%;
  bottom: -50%;
  z-index: 999;
  transform: translate(-15%, -155%);
}
/********************* / Auto Schedule Page Page  *********************/

/* ======================================*/
/* / QUESTION BANK */
/* ======================================*/

.student_question_bank-section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: #fff;
}

.student_question_bank-section h1 {
  font-size: 5rem;
}

@media (max-width: 1476px) {
  .student_question_bank-section h1 {
    font-size: 4rem;
  }
}

@media (max-width: 991px) {
  .student_question_bank-section h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .student_question_bank-section h1 {
    font-size: 30px;
  }
}



.student_question_bank-content-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #012945 0%, #005295 100%);
  overflow: hidden;
}

.student_question_bank-content {
  position: relative;
  background: #ffffff0f;
  padding: 84px 0;
  z-index: 9;
  border-radius: 80px;
}
.student_question_bank-logo-svg .logo-svg {
  position: relative;
  width: 200px !important;
}
@media (max-width: 1476px) {
  .student_question_bank-content {
    padding: 24px 0;
  }
  .student_question_bank-logo-svg .logo-svg {
    position: relative;
    width: 100px !important;
  }
}
@media (max-width: 991px) {
  .student_question_bank-content {
    padding: 20px;
    border-radius: 20px;
  }
}

@media (max-width: 1476px) {
  .student_question_bank-content-box {
    padding: 84px 20px;
  }
}

@media (max-width: 991px) {
  .student_question_bank-content-box {
    padding: 20px 20px !important;
  }
}

.student-question-bank_cube-shape-box {
  position: absolute;
  width: 100% !important;
  height: 0 !important;
  left: -0;
  top: 0;
  transform: scale(1.1);
  z-index: 1;
  opacity: 0.4;
}
.student_question_bank-logo-svg svg {
  position: relative;
  z-index: 1 !important;
}

.thinking-learning-wrapper {
  max-width: 400px !important;
}

@media (max-width: 991px) {
  .student_question_bank-logo-svg svg {
    width: 150px;
  }
  .thinking-learning-wrapper {
  max-width: 300px !important;
}
}
@media (max-width: 767px) {
  .thinking-learning-wrapper {
    max-width: 200px !important;
  }
}

.matter-list-box li {
  list-style: disc;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
 .matter-list-box li {
  font-size: 14px !important;
 }
}

.practice-learning-box {
  position: relative;
  width: 100%;
  overflow: hidden; /* Ensures blur doesn't overflow */
}

.practice-learning-box::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 80px; /* adjust as needed */
  /* backdrop-filter: blur(10px); */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1),
    /* top */ rgba(255, 255, 255, 0.9),
    /* center */ rgba(255, 255, 255, 0.1) /* bottom */
  );
  z-index: 1;
  pointer-events: none; /* lets clicks pass through */
}

.practice-learning-blurr-svg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 99;
}

.card-mode {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 100%;
  min-height: 335px;
  background: linear-gradient(24deg, #d9d9d900, #d9d9d900),
    linear-gradient(222deg, #5297b7 0%, #1bddcf 100%);
  box-shadow: -2px 15px 0px 0px #00000040;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: space-between;
}

@media (max-width: 991px) {
  .card-mode {
    max-width: 800px;
  }
}

.card-mode-header {
  color: var(--gold);
  font-size: 20px;
  font-weight: 800;
  width: 100%;
}

.card-svg-box {
  width: 70px;
}
/* ======================================*/
/* / QUESTION BANK */
/* ======================================*/

  /* Customize checkbox when checked */
    .form-check-input {
    background-color: transparent !important; /* Green */
    border-color: var(--gold) !important;
  }
  .form-check-input:checked {
    background-color: var(--gold) !important; /* Green */
    border-color: var(--gold) !important;
  }
.form-check-input:focus {
    border-color: var(--secondary);
    outline: 0;
    box-shadow: 0 0 0 .25rem #ffb5474f ;
}

/*********************  Topic Mode (Stepper)  *********************/
.welcome-exam-mode {
  background-color: var(--secondary);
  color: var(--gold-dark);
}

.ModeTitleHeader {
  color: var(--gold) !important;
  font-size: 35px !important;
}


.start-mode-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}
.stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 21px;
  width: 60px;
  height: 2px;
  background-color: #dcdcdc;
}

.step .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.step.active .circle {
  background-color: #6c63ff;
}

.step.completed .circle {
  background-color: #28a745;
}

.step .label {
  margin-top: 8px;
  font-size: 14px;
}

.step-icon {
  font-size: 18px;
}

.step-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: auto;
  min-height: 500px;
}

.stepper-button {
  width: auto;
  border-radius: 30px;
  padding: 8px 20px !important;
  background-color: var(--primary);
  color: var(--light);
}

/* .label-item-box {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    } */

.label-item-box label {
  width: 100%;
  /* min-width: 500px;
      flex: 20%; */
  height: auto;
  min-height: 90px;
  padding: 24px;
  border-radius: 14px;
  color: var(--light);
  /* box-shadow: rgba(59, 59, 59, 0.2) 0px 7px 29px 0px; */
  /* background-color: #fff; */
  border: 1px solid var(--light)  !important;
}
.label-item-box label:hover {
  background-color: #e7f1ff;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
   color: var(--primary) !important;
}

.selected {
  background-color: #e7f1ff !important;
   color: var(--primary) !important;
}


#progress-badge {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  border-radius: 1rem;
}

/* Custom radio style */
input[type="radio"].custom-radio + .custom-radio-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 2px solid gold !important;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
}

/* Checked style */
input[type="radio"].custom-radio:checked + .custom-radio-label::before {
  background-color: gold;
}



.selected-option .selection-indicator {
  background-color: white;
}


/********************* / Topic Mode (Stepper)  *********************/
/* .content-box {
} */
.subject-image-box {
  position: relative;
  width: 100%;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mass-and-balance,
.communication {
  position: relative;
  width: 100% !important;
  height: 100% !important;
}

.mass-and-balance::before,
.communication::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #001b3a85; /* semi-transparent dark */
  z-index: 2;
  transition: background-color 0.3s ease;
}

.mass-and-balance:hover::before,
.communication:hover::before {
  background-color: #e6e6e600;
}

.mass-and-balance.selected::before,
.communication.selected::before {
  display: none;
}

.mass-and-balance .subject-image-box {
  background-image: url(../images/mass-and-balance.png);
}
.communication .subject-image-box {
  background-image: url(../images/communication.png);
}

/********************* Syllabus Analitic  *********************/
.syllabus-analitic-container {
  position: relative;
  width: 100%;
  height: 580px;
  background-image: url(../../static/images/analytics.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.syllabus-analitic-container::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #000000ad;
  z-index: 1;
}

.syllabus-analitic-logo-box {
  position: relative;
  z-index: 2;
}

.syllabus-analitic-heading-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: 2;
}
.syllabus-analitic-heading-text h1 {
  font-size: 70px;
  font-weight: 900;
}

.syllabus-analitic-content,
.syllabus-analitic-content2 {
  position: relative;
  display: flex;
  align-items: end;
  gap: 20px;
  color: var(--secondary);
}
.syllabus-analitic-content-img-box {
  width: 100%;
  max-width: 350px;
  height: 400px;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  overflow: hidden;
  object-fit: cover;
}

.syllabus-analitic-pie-chart-box
  .apexcharts-legend.apexcharts-align-center.apx-legend-position-bottom {
  position: relative !important;
  justify-content: space-between !important;
  top: unset !important;
  left: unset !important;
}
.syllabus-analitic-content2 {
  box-shadow: 10px 20px 4px -8px #00000040;
}

#chart.apexcharts-canvas {
  width: 600px !important;
}

.syllabus-analitic-content-accurancy {
  position: relative;
  color: var(--secondary);
  background-color: #e7effa;
}
/* .syllabus-analitic-certificate-svg-box {
} */

.bubbles-svg-box {
  position: relative;
  width: auto;
  height: auto;
  min-height: 30px;
  border-radius: 100px;
  overflow: hidden;
}

.bubbles-svg-box img {
  position: absolute;
  width: 70px;
}

/* .apexcharts-legend-series {
  width: 100% !important;
  text-align: center;
} */

/********************* /  Syllabus Analitic  *********************/


.choice_label:hover,
.selected-option {
  color: var(--light);
  cursor: pointer;
}
.choice_label input {
  width: 28px;
  height: 28px;
}

.status-completed {
  background-color: #d4edda;
  color: #155724;
  font-weight: bold;
  border-radius: 10px;
  padding: 5px 10px;
  display: inline-block;
}

.status-overdue {
  background-color: #f8d7da;
  color: #721c24;
  font-weight: bold;
  border-radius: 10px;
  padding: 5px 10px;
  display: inline-block;
}

.status-pending {
  background-color: #fff3cd;
  color: #856404;
  font-weight: bold;
  border-radius: 10px;
  padding: 5px 10px;
  display: inline-block;
}


/* Progress BAr */
.progress-bar {
  background-color: var(--primary);
}


/* FREE TRIAL  */
.free-trial-dashboard-section {
  position: relative;
  width: 100%;
  
}



/* ======================================*/
/* RESULT AND ANALYTICS */
/* ======================================*/
  .overview-display {
    font-size: 4rem;
  }
  .custom-btn-primary {
    background-color: #001b3a;
    border-color: #001b3a;
    color: white;
  }
  .custom-btn-primary:hover {
    background-color: #002d62;
    border-color: #002d62;
  }
  .dropdown-menu .dropdown-item:hover {
    background-color: #ececec;
    color: inherit;
  }
  .dropdown-menu {
    min-width: 250px;
    border: 3px solid #ffbd43;
    border-radius: 6px;
  }
  .dropdown {
    position: relative;
    padding-bottom: 120px; /* Enough to fit dropdown menu */
  }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }
  .dropdown-toggle {
    color: #838383 !important;
  }
  .dropdown-menu .dropdown-item {
    color: #1676bd !important;
  }
  .no-data-message {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 2rem;
  }
  .banner-wrapper {
    background: linear-gradient(135deg, #00d4aa 0%, #1e3a8a 100%);
  }

  @media (max-width: 768px) {
    .overview-display {
      font-size: 2rem;
    }
    .result-and-analytic-wrapper h3 {
      font-size: 1rem;
    }
  }

  .apexcharts-legend {
    padding: 20 10px;
    justify-content: space-between !important;
    max-width: 700px !important;
    margin: 0 auto;
    margin-top: 40px !important;
}

/* paste into your stylesheet or <style> block */
.selected-answer {
  background-color: #19875426 !important;
  border-left: 4px solid #198754;
}
.wrong-answer {
  background-color: rgba(255, 0, 0, 0.226) !important;
  border-left: 4px solid #ff000099;
}
/* optional small visual for the correct-but-not-selected item */
.correct-answer {
  background-color: #19875410 !important;
  border-left: 4px solid #198754;
}
.option input[type="radio"] {
  transform: scale(1.02);
}
/* ======================================*/
/* / RESULT AND ANALYTICS */
/* ======================================*/







/* ======================================*/
/* LEGAL INFORMATION */
/* ======================================*/
.legal-information-banner {
  position: relative;
  background: linear-gradient(25deg, #000 10%, #0a34cd 60%, #000 100%);
}

.legal-information-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

.legal-information-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 240px;
  left: 0;
  bottom: -10px;
  background-color: var(--secondary);
}
/* ======================================*/
/* / LEGAL INFORMATION */
/* ======================================*/



















