.widget_profile_img img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    object-fit: cover;
  }
  .widget_progress_bar .progress {
    background-color: #edf2f6;
    height: 30px;
    border-radius: 0px;
    margin-bottom: 0px;
    box-shadow: none;
}
.progress-bar {
  background-color: #50b33c;
}
.progress-bar p {
  font-size: 14px;
  margin-bottom: 0;
}
.ed_course_single_item {
  padding: 20px;
  background: #ffffff;
  float: left;
  width: 100%;
}
.ed_course_single_item .ed_course_single_info {
  padding-top: 0px;
}
.ed_course_single_info h2 {
  font-size: 24px;
  margin-top: 0px;
  text-transform: capitalize;
}
.result_info_title h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}
.ed_course_single_result {
  position: relative;
}
.ed_course_single_info__resulttable {
  position: relative;
  max-width: 400px;
  width: 100%;
}
.resulttable__success {
  position: relative;
  padding: 8px 20px;
  text-align: center;
  background: #50b33c;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: white;
  margin-bottom: 20px;
}
.resulttable__success h4 {
  margin: 0;
  color: white;
}
.resulttable__data {
  list-style: none;
  padding: 0;
}
.resulttable__data li:not(:last-child) {
  border-bottom: 1px solid #d6d6d6;
}
.resulttable__data li {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: black;
}
.progress-circle-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.progress-circle {
  position: relative;
  width: 240px;
  height: 240px;
}
.progress-svg {
  transform: rotate(-90deg);
}
.circle-bg {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 10;
}
.circle-progress {
  fill: none;
  stroke: #76c7c0;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 1s ease;
}
.progress-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.progress-percentage {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
.progress-total {
  font-size: 14px;
  color: #666;
}
.ed_orange {
  background-color: #0094ce;
  border-color: #0094ce;
  text-transform: uppercase;
  font-weight: 600;
}
.ed_orange {
  background-color: #fcb102;
  color: #fff;
  border: 2px solid #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ed_btn {
  border-radius: 50px;
  padding: 12px 44px;
  text-transform: capitalize;
  overflow: hidden;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  z-index: 1;
  border: none;
}
.empty-message {
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #ffdddd;
  background-color: #ffecec;
  color: #d8000c;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.quiz-details-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}
.quiz-details-container > div {
  flex: 1;
  margin: 0 10px;
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz-details-container > div i {
  margin-right: 8px;
  font-size: 20px;
  color: #fcb102;
}
.quiz-start-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.quiz-start-btn-container .btn {
  padding: 15px 30px;
  font-size: 18px;
}
.ed_orange {
  background-color: #0094ce;
  border-color: #0094ce;
  text-transform: uppercase;
  font-weight: 600;
}
.ed_course_single_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: #e0e7ef;
  margin-top: 30px;
}
.ed_course_single_header_right {
  display: flex;
  gap: 20px;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 10px;
}
.countdown i {
  line-height: 0;
  display: inline-block;
  margin-top: -8px;
}
.ed_course_single_quistion {
  margin: 30px 0;
}
/* The container */
.radiocontainer {
  display: block;
  position: relative;
  width: 100%;
  padding: 5px 20px 5px 45px;
  border: 1px solid #CACACA;
  border-radius: 5px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.radiocontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 7px;
  left: 10px;
  height: 20px;
  width: 20px;
  border-radius: 3px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.radiocontainer:hover input~.checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.radiocontainer input:checked~.checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.radiocontainer input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.radiocontainer .checkmark:after {
  left: 7.5px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ed_course_single_item .ed_blog_bottom_pagination {
  margin: 40px auto 0;
  width: max-content;
  float: none;
}

.result_info_title {
  float: none;
}

.ed_course_single_result {
  position: relative;
}

.ed_course_single_info__resultcircle {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 100%;
}

.ed_course_single_info__resultcircle::before {
  position: absolute;
  content: "";
  width: 205px;
  height: 205px;
  background: #c7c7c7;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.ed_course_single_info__resultcircle::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 180px;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.resultcircle {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.resultcircle .round {
  transform: rotate(-90deg);
  transition: all 1s ease-in-out;

  /* SVG */
  fill: none;
  stroke: #50b33c;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 0 999;
}

.resultnumber {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  text-align: center;
}

.examresult {
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.ed_course_single_info__resulttable {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.resulttable__success {
  position: relative;
  padding: 8px 20px;
  text-align: center;
  background: #50b33c;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: white;
  margin-bottom: 20px;
}
.resulttable__failed {
  position: relative;
  padding: 8px 20px;
  text-align: center;
  background:#f8d7da;;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: #721c24;
  margin-bottom: 20px;
}
.resulttable__failed h4 {
  margin: 0;
  color: #721c24;
}
.resulttable__success h4 {
  margin: 0;
  color: white;
}

.resulttable__data {
  list-style: none;
  padding: 0;
}

.resulttable__data li {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: black;
}

.resulttable__data li:not(:last-child) {
  border-bottom: 1px solid #d6d6d6;
}

.ed_course_single_lastattemp {
  margin-top: 50px;
}

.ed_course_single_lastattemp h4 {
  margin-bottom: 30px;
}

.ed_course_single_lastattemp table {
  position: relative;
  width: 100%;
}

.ed_course_single_lastattemp table th {
  padding: 5px 15px;
  text-align: center;
  border: 1px solid #d5d4d5;
}

.ed_course_single_lastattemp table tr,
.ed_course_single_lastattemp table td {
  padding: 5px 15px;
  text-align: center;
  border: 1px solid #d5d5d5;
}

.ed_course_single_retakebtn {
  margin-top: 40px;
  display: flex;
  justify-content:center;
}

.progress-bar {
  background-color: #50b33c;
}

.widget_profile {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.widget_profile_img img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  object-fit: cover;
}

.widget_profile_menu {
  padding: 0;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -20px;
}

.widget_menu {
  position: relative;
  padding: 0;
  margin: 0;
}

.widget_menu li {
  position: relative;
  border-bottom: 1px solid #d5d5d5;
  list-style: none;
}

.widget_menu li a {
  position: relative;
  display: flex;
  padding: 10px 25px;
  gap: 8px;
  align-items: center;
  font-size: 17px;
  font-weight: 400;
  color: #000;
  transition: all .3s;
}

.widget_menu li a::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 0;
  top: 0;
  background: #0192d1;
  opacity: 0;
}

.widget_menu li a i {
  color: #0192d1;
}

.widget_menu li a.active::before {
  opacity: 1;
}

.profile_content {
  position: relative;
  padding: 20px;
  background: #ffffff;
}

.profile_courseinfo_item h6 {
  font-size: 14px;
}

.profile_courseinfo {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
}

.profile_courseinfo_item {
  position: relative;
  width: 20%;
  padding: 20px;
  border-radius: 5px;
  background: #f1f1f1;
  text-align: center;
  color: #000;
}

.profile_courseinfo_item h6:last-child {
  color: #fcb102;
  margin-bottom: 0;
}

.profile_infotab {
  margin-top: 40px;
}

.profile_infotab ul li a {
  position: relative;
}

.profile_infotab ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #fcb102;
  opacity: 0;
}

.profile_infotab ul li a:focus {
  background: transparent;
}

.profile_infotab ul li a:hover,
.profile_infotab ul li a.active {
  color: #fcb102;
}

.profile_infotab ul li a.active::before {
  opacity: 1;
}

.profile_infotab_table {
  margin-top: 40px;
  position: relative;
  width: 100%;
}

.profile_infotab_table table {
  position: relative;
  width: 100%;
}

.profile_infotab_table tr th {
  padding: 10px;
  border: 1px solid #d5d5d5;
  text-align: center;
  color: #000;
}

.profile_infotab_table tr td {
  padding: 10px;
  border: 1px solid #d5d5d5;
  text-align: center;
}

.profile_infotab_table tr td:nth-child(1) {
  padding: 0;
}

.profile_infotab_table tr td img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.profile_infotab_table tr td:nth-child(2) {
  width: 30%;
}

.profile_infotab_content_empty {
  position: relative;
  padding: 15px 30px;
  margin-top: 30px;
  border: 1px solid #fcb102;
  border-radius: 10px;
}

.profile_infotab_content_empty p {
  margin: 0;
}

.profile_content {
  height: 100%;
}

.profile_content_orderdetails {
  margin-top: 40px;
}

.profile_infotab_form {
  position: relative;
  margin-top: 30px;
}

.profile_infotab_form .col-md-6 {
  margin-bottom: 30px;
}

.profile_infotab_form label {
  margin-bottom: 10px;
  color: #000;
}

.profile_infotab_form .avatar_label {
  position: relative;
  width: 200px;
  height: 200px;
  background: #f1f1f1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  color: #fcb102;
}

.profile_infotab_form .avatar_input {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.profile_infotab_form .col-md-12 {
  margin-bottom: 30px;
}


.ed_pagetitle {
  padding: 24px;
  background: #ffc133;
}

.ed_pagetitle * {
  color: black !important;
}

.ed_orange {
  background-color: #0094ce;
  border-color: #0094ce;
  text-transform: uppercase;
  font-weight: 600;
}

.ed_green {
  background-color: #0094ce;
  color: #fff;
  border: 2px solid #0096cb;
  text-transform: uppercase;
  font-weight: 600;
}

.InCulture_call {
  gap: 5px;
}

.InCulture_call a {
  padding: 9px 14px;
}

.ed_pagetitle ul.breadcrumb li i {
  border-color: black;
}

.ed_blog_bottom_pagination .pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
  background-color: #008cbd;
  color: #ffffff;
  border-color: #008cbd;
}

.ed_blog_bottom_pagination .pagination>li>a,
.pagination>li>span {
  color: #008cbd;
  border: 2px solid #008cbd;
}

.ed_toppadder80 {
  padding-top: 36px;
}

.course-lessson-header {
  position: sticky;
  top: 0;
  z-index: 200;
}

.lesson-search .btn.btn-default {
  background: #0094ce;
}

.lesson-search .btn.btn-default i {
  color: #ffffff !important;
}

.course_header_info {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.course_header_info p {
  margin-bottom: 0;
  font-size: 15px;
}

.course_header_info_progress {
  position: relative;
  width: 100px;
  height: 10px;
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
}

.course_header_info_progress_inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 10%;
  height: 100%;
  background: #cdcdcd;
}

.course-lessson-back-button {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 100%;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background: #0094ce;
}

.course-lessson-back-button i {
  color: #ffffff !important;
}

@media screen and (max-width:767px) {
  .ed_pagetitle.course-lessson-header {
      padding-right: 100px;
      padding-top: 10px;
      padding-bottom: 10px;
  }

  .course_header_info {
      justify-content: center;
      margin-top: 10px;
  }
}


.ed_course_single_info_gallry {
  margin-bottom: 30px;
}

.ed_course_single_info_audio audio {
  width: 100%;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
      max-width: 1300px;
  }
}

.widget_partner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width:575px) {
  .widget_partner{
      flex-direction: row;
      justify-content: center;
      align-items: center;
  }
}
.widget_partner_img img {
  max-height: 80px;
  object-fit: contain;
  margin: 0;
}

.text-widget p a:not(:last-child) {
  margin-right: 8px;
}

.ed_event_single_address_info p a:not(:last-child) {
  margin-right: 8px;
}
/* Directory Tag Styles */
.directory-tags .etiqueta {
  background-color: #0094ce;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  margin: 5px 5px 0 0; /* Spacing between tags */
  display: inline-block;
  font-size: 0.9em;
}

/* Button Styles for Read More */
.vc_btn3 {
  background-color: #ff9800;
  color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.vc_btn3:hover {
  background-color: #e67e00; /* Darken on hover */
  color: #fff;
}

/* Row Spacing */
.ed_transprentbg .container .row > .col-lg-4,
.ed_transprentbg .container .row > .col-md-6,
.ed_transprentbg .container .row > .col-sm-12 {
  margin-bottom: 30px; /* Space between rows */
}

/* Apply flex to the row of course cards */
.equal-height {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Make the ed_item_description grow to fill available space */
.ed_item_description {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Style for the free label */
.ed_course_free_label {
  color: #fff;
  background-color: #007bff; /* blue background */
  padding: 5px 10px;
  font-size: 0.9em;
  border-radius: 3px;
  margin-left: 10px;
}

.ed_course_single_info h2 span.ed_course_free_label_internal
{
  color: #fff;
  font-weight: bold;
  background: #0094ce;
  font-size: 14px;
  padding: 8px;
  border-radius: 10px;
}
/*08-11-2024 CSS code start */
/* Modal container */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal content */
.custom-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Close button */
.close-modal {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

/* Modal content styling */
.result_info_title h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.resulttable__data--item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 16px;
  color: #444;
}

.resultcircle svg {
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
}

.resultnumber {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-modal-content {
      width: 95%;
  }

  .result_info_title h2 {
      font-size: 20px;
  }
}

/* Container for the result circle and text */
.quiz-result-circle-container {
  position: relative;
  width: 240px;
  height: 240px;
  display: inline-block;
}

/* SVG wrapper */
.quiz-result-circle-svg {
  position: relative;
  width: 100%;
  height: 100%;
}

/* SVG element */
.quiz-svg {
  transform: rotate(-90deg); /* Start progress from the top */
}

/* Grey background circle */
.quiz-background-circle {
  fill: none;
  stroke: #e6e6e6; /* Grey color */
  stroke-width: 10;
}

/* Green progress circle */
.quiz-progress-circle {
  fill: none;
  stroke: #4caf50; /* Green color for progress */
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.5s ease; /* Smooth animation */
}

/* Centered text for percentage */
.quiz-result-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.quiz-percentage {
  font-size: 1.5em;
  color: #4caf50; /* Matches the green progress color */
  margin: 0;
}

.quiz-total {
  font-size: 0.8em;
  color: #666; /* Grey color to contrast with the percentage */
  margin: 0;
}
.profile_infotab_table_tr .course-img a
{
  color: #000;
  font-weight: bold;
}
.profile_infotab_table_tr .course-img a:hover
{
  color: #fcb102;
  font-weight: bold;
  transition: all 0.3s;
}
.empty-message {
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #ffdddd;
  background-color: #ffecec;
  color: #d8000c;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
/*08-11-2024 CSS code end */

/*20-11-2024 css code start */
.accordion-container {
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-item {
  margin: 0;
  border-bottom: 1px solid #ddd;
  border-left: 0;
  border-right:0;
  border-top:0;
}

.accordion-header {
  cursor: pointer;
  padding: 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
 
}

.accordion-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.accordion-header i {
  transition: transform 0.3s ease;
  color: #888;
}

.accordion-header.open i {
  transform: rotate(180deg);
  color: #fcb102;
}

.accordion-content {
  display: none;
  padding: 15px;
  background: #fff;
  border-top: none;
}

.accordion-content.show {
  display: block;
}

.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-content ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.accordion-content ul li a {
  text-decoration: none;
  color: #555;
  display: flex;
  align-items: center;
}

.accordion-content ul li a:hover {
  color: #333;
}

.accordion-content ul li.active a i.fa.fa fa-chevron-right {
  margin-right: 8px;
  color: #fcb102;
}
.accordion-content ul li a i.fa.fa fa-chevron-right
{
  margin-right: 8px;
  color: #555;
}
.accordion-content ul li.active a {
  font-weight: bold;
  color: #fcb102;
}
.accordion-content ul li a 
{
  color: #555;
  font-weight: bold;
}
.accordion-container .start-quiz
{
  padding:15px 0 0 0;
}
.message-box {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ffcccc;
  background-color: #ffebeb;
  color: #d9534f;
  border-radius: 4px;
  font-weight: bold;
  display: none;
}
  .quiz-section {
      padding: 20px;
      border: 1px solid #ddd;
      background-color: #f9f9f9;
  }
  .btn-pagination {
      margin: 5px;
      padding: 5px 10px;
      background-color: #28a745;
      color: #fff;
      border: none;
      cursor: pointer;
  }
  .btn-pagination:hover {
      background-color: #218838;
  }
  .drag-options-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}

.drag-option {
  padding: 5px 10px;
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  cursor: grab;
  user-select: none;
}

.drag-drop-blank {
  display: inline-block;
  min-width: 60px;
  padding: 2px 5px;
  border-bottom: 1px dashed #888;
  text-align: center;
  margin: 0 5px;
}
.lp-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 400px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  padding: 20px;
  border-radius: 8px;
}

.lp-modal-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.lp-modal-body {
  margin-bottom: 15px;
  font-size: 14px;
}

.lp-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.lp-button {
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.btn-no {
  background-color: #ccc;
  color: #333;
}

.btn-yes {
  background-color: #4caf50;
  color: #fff;
}
.fa-check-circle.completed {
  color: #3bb54a;
  font-weight: bold;
  font-size: 22px;
  padding-left: 10px;
}
.fa-check-circle.failed {
  color: #f8d7da;
  font-weight: bold;
  font-size: 22px;
  padding-left: 10px;
}
.text-success,.text-danger
{
  /*font-size: 22px;
  padding-left: 20px;*/
  font-weight: bold;
}
.fa-circle {
  color: gray;
}
.progress-svg {
  transform: rotate(-90deg); /* Rotate for correct progress direction */
}

.circle-bg {
  fill: none;
  stroke: #e0e0e0; /* Light gray background */
  stroke-width: 10;
}

.circle-progress {
  fill: none;
  stroke: #76c7c0; /* Green progress color */
  stroke-width: 10;
  stroke-linecap: round; /* Smooth end caps */
  stroke-dasharray: 251.2; /* Total circumference (2 * Ï€ * radius) */
  stroke-dashoffset: 251.2; /* Start fully hidden */
  transition: stroke-dashoffset 1s ease; /* Smooth animation */
}

.progress-circle-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.progress-circle {
  position: relative;
  width: 240px;
  height: 240px;
}

.progress-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.progress-percentage {
  font-size: 24px;
  font-weight: bold;
  color: #333; /* Text color for percentage */
}

.progress-total {
  font-size: 14px;
  color: #666; /* Text color for total label */
}
.ed_course_single_item .btn.completed {
  background-color: #278bc8;
  border-color: #278bc8;
  cursor: not-allowed;
  color: #fff;
}
.quiz-details-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}

.quiz-details-container > div {
  flex: 1;
  margin: 0 10px;
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-details-container > div i {
  margin-right: 8px;
  font-size: 20px;
  color: #fcb102; /* Icon color */
}

.quiz-start-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.quiz-start-btn-container .btn {
  padding: 15px 30px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .quiz-details-container {
      flex-wrap: wrap;
  }

  .quiz-details-container > div {
      margin-bottom: 10px;
  }
}
.user-info {
  position: relative;
  display: inline-block;
}

.profile-dropdown {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.user-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.user-name {
  font-weight: bold;
  margin-right: 5px;
}

.fa-chevron-down {
  font-size: 12px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 10px;
  z-index: 1;
  border-radius: 5px;
  top: 38px;
  right: 0;
}

.dropdown-content p {
  margin: 0;
  padding: 5px 0;
}

.dropdown-content .dropdown-logout {
  display: block;
  padding: 10px;
  text-align: center;
  background-color: #f44336;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.dropdown-content .dropdown-logout:hover {
  background-color: #d32f2f;
}

.user-info:hover .dropdown-content {
  display: block;
}
a[data-bs-toggle="tooltip"] {
  color: #333;
  transition: color 0.3s ease;
}

a[data-bs-toggle="tooltip"]:hover {
  color: #007bff; /* Change to your theme color */
}
.login-signup 
{
  padding-top: 7px;
}
.login-signup  #login
{
  font-size: 24px; color: #000;
}
.login-signup  #signup
{
  font-size: 24px; color: #000;
}
.login-signup  #login:hover,.login-signup  #signup:hover
{
  color:#ffc133;
}
.brand-blue {
  color: #007bff; /* Replace with your specific brand blue color code */
  padding:0 0 0 10px;
}
.ed_course_single_image .completion-message {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 123, 255, 0.8); /* Semi-transparent blue background */
  color: #fff; /* White text */
  padding: 5px 10px; /* Add padding for better readability */
  font-size: 14px; /* Adjust font size */
  font-weight: bold; /* Make text bold */
  border-radius: 5px; /* Add rounded corners */
  z-index: 10; /* Ensure it stays above the image */
  text-align: center;
  white-space: nowrap; /* Prevent text wrapping */
}
.ed_course_single_item .ed_course_single_image img
{
height: 300px;
object-fit: cover;
}
.ed_course_single_item .ed_course_single_info h2
{
  margin-bottom: 15px;
}
/* Ensure tabs cover full width and are evenly spaced */
.equal-width-tabs {
  display: flex;
  justify-content: space-between; /* Evenly space items */
  width: 100%; /* Cover full row width */
  margin-bottom: 20px; /* Add spacing below the tabs */
}

.equal-width-tabs .nav-item {
  flex: 1; /* Equal width for all tabs */
}

.equal-width-tabs .nav-link {
  display: block; /* Make the <a> tag a block-level element */
  width: 100%; /* Ensure it stretches to cover the entire <li> */
  text-align: center; /* Center-align the text in each tab */
  padding: 10px; /* Add padding for better click area */
  border: 1px solid transparent; /* Match default Bootstrap tab styling */
  border-radius: 4px; /* Add rounded corners */
  color: #007bff; /* Default text color */
  text-decoration: none; /* Remove underline */
}

.equal-width-tabs .nav-link.active {
  color: #fff; /* Active tab text color */
  background-color: #007bff; /* Active tab background */
  border-color: #007bff; /* Active tab border color */
}

.equal-width-tabs .nav-link:hover {
  background-color: #e9ecef; /* Light background on hover */
  color: #0056b3; /* Hover text color */
  text-decoration: none; /* Remove underline */
}
#curriculumAccordion button.accordion-button
{
  color: #fff;
  background-color: #0094ce;
  font-weight: bold;
  border:1px solid #0094ce;
  box-shadow: none;
}
.profile_infotab_table button.view-certificate-btn, .profile_infotab_table .certificate_download
{
  background: #0094ce;
  border: 1px solid #0094ce;
  border-radius: 25px;
  color: #fff;
}
.card img {
  object-fit: cover;
  height: 100%; /* Ensures consistent height for images */
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.card-body ul {
  padding-left: 0;
}

.card-body ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.btn-sm {
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
}
/* Course Card Styling */
.course-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding: 15px 15px 0 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Free Tag */
.course-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #0094ce;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
}

/* Course Image */
.course-image {
  flex: 1 1 15%; /* Image takes 30% of the card width */
  margin-right: 15px;
}

.course-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Course Content */
.course-content {
  flex: 1 1 70%; /* Content takes 70% of the card width */
  display: flex;
  flex-direction: column;
}

.course-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.course-title a {
  color: #333;
  text-decoration: none;
}

.course-title a:hover {
  color: #007bff;
}

/* Author Section */
.course-author {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.course-author a {
  color: #555;
  font-size: 14px;
  text-decoration: none;
}

.course-author a:hover {
  color: #007bff;
}

/* Description */
.course-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* Enroll Button */
.btn-enroll {
  align-self: flex-end;
  background-color: #0094ce;
  color: #fff;
  text-decoration: none;
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 16px;
}

.btn-enroll:hover {
  background-color: #fcb102;
  color: #fff;
}
/* Wrapper for quiz pagination controls */
.quiz-pagination-controls {
  display: flex;
  justify-content: space-between; /* Space out Previous, Finish, and Next buttons */
  align-items: center; /* Vertically align buttons */
  gap: 10px; /* Add spacing between buttons */
  width: 100%; /* Ensure the container spans full width */
  margin: 20px 0; /* Add spacing around the row */
}

/* Pagination Buttons (Previous and Next) */
.btn-pagination {
  font-size: 14px; /* Standard font size */
  padding: 8px 15px; /* Comfortable padding */
  flex: 1; /* Equal space for Previous and Next buttons */
  max-width: 120px; /* Limit button width for consistent sizing */
  text-align: center; /* Center align button text */
}

/* Finish Quiz Button */
.finish-button {

  margin: 0 auto; /* Center align the button */

}

/* Placeholder for missing buttons */
.btn-placeholder {
  flex: 1; /* Maintain space for alignment */
  max-width: 120px; /* Ensure placeholder matches button size */
}
.lesson-controls .trainingmaterials,.lesson-controls .previousbutton,.lesson-controls .nextbutton
{
  color: #fff;
  background-color: #0094ce;
  border-color: #0094ce;
  border-radius: 25px;
  padding: 10px 15px 10px 15px;  
  font-weight: bold;
}
.lesson-controls .trainingmaterials:hover,.lesson-controls .previousbutton:hover,.lesson-controls .nextbutton:hover
{
  color: #fff;
  background-color: #fcb102;
  border-color: #fcb102;
  font-weight: bold;
}
/* Dropdown Menu */
.dynamic-dropdown {
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: auto; /* Adjust width based on content */
  min-width: 200px; /* Optional: Set a minimum width */
  max-width: 300px; /* Optional: Limit the maximum width */
}

/* Welcome Text */
.dropdown-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px; /* Add spacing below the text */
  white-space: nowrap; /* Prevent text wrapping */
}

/* Buttons Row */
.dropdown-buttons {
  display: flex;
  justify-content: space-between; /* Align buttons horizontally */
  gap: 10px; /* Add spacing between buttons */
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

/* Profile Button */
.btn-profile {
  flex: 1; /* Ensure equal width for buttons */
  text-align: center;
  font-size: 14px;
  padding: 8px 12px;
  background-color: #0094ce;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-profile:hover {
  background-color: #fcb102;
  color: #fff;
  font-weight: bold;
}

/* Logout Button */
.btn-logout {
  flex: 1; /* Ensure equal width for buttons */
  text-align: center;
  font-size: 14px;
  padding: 8px 12px;
  background-color: #0094ce;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-logout:hover {
  background-color: #fcb102;
  color: #fff;
}
#forgotPasswordForm {
  display: none;
}

#forgotPasswordForm,
#loginForm {
  transition: all 0.3s ease-in-out;
}
#forgotPasswordForm input#forgot_email
{
  outline: 0;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    height: 48px;
    font-size: 15px;
    color: var(--eduhive-text, #7B7980);
    font-weight: 400;
    background-color: var(--eduhive-white, #FFFFFF);
    border: 0.5px solid var(--eduhive-gray, #E5E5E5);
    border-radius: 6px;
    transition: all 500ms ease;
}
/* Responsive Behavior for Smaller Screens */
@media (max-width: 576px) {
  .dropdown-buttons {
      flex-direction: column; /* Stack buttons vertically */
      gap: 10px; /* Add spacing between stacked buttons */
  }

  .btn-profile,
  .btn-logout {
      flex: none; /* Allow buttons to take natural width */
      width: 100%; /* Full width for buttons in small screens */
  }
}