body{
	background-color: #fff !important;
	height: 100%;
	--left-nav-width:250px;
	--primary-color: #044FC0;
	--primary-color-light: #f8f5ff;
	--bs-border-color : #c6c7c9;
	font-family: "Roboto Condensed", sans-serif !important;
 	font-optical-sizing: auto;
}
.icon_img_26{
	width: 18px;
}
/* Dashboard Card */

 .dashboard_card{
    position: relative;
    min-width: 0;
	background: #FFFFFF;
	border-radius: 0px;
	margin-bottom: 20px;
	display: block;
	text-decoration: none;
	border: 1px solid #d8e8ff;
/*  	box-shadow: 8px 4px 36px -4px #dadaff;*/
/*  	-webkit-box-shadow: 8px 4px 36px -4px #dadaff;*/
}


.dashboard_card .card_icon_wrapper{
	position: absolute;
	text-align: center;
	top: 22px;
	right: 22px;
	height: 60px;
	width: 60px;
/*	background: #f0f0ff;*/
	border-radius: 50%;
	color: #000;
	padding: 12px;
	font-size: 32px;
}

.dashboard_card .card_icon_wrapper i{
	position: absolute;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	left: 50%;
	color: var(--primary-color);
}

.dashboard_card .card_content{
	padding: 22px;
}

.dashboard_card .card_number{
	font-size: 30px;
	font-weight: 800;
	color: var(--primary-color);
}

.dashboard_card .card_text{
	font-size: 14px;
	color: #666;
}

a.dashboard_card:hover{
	background: #fbfbfb;
	cursor: pointer;
	border: 1px solid #e3e2ff;
	text-decoration: none;
	color: inherit;
}

/* Dashboard Card ENDS*/

.card.vidsafe_card{
	border: 1px solid #E6EAF6;
	box-shadow: none !important;
	border-radius: 0px;
}

.card-img,.card-img-top{
	border-radius: 0px !important;
}

.box{
	background: #fff;
	box-shadow: 8px 4px 36px -4px #dadaff;
  	-webkit-box-shadow: 8px 4px 36px -4px #dadaff;
  	border-radius: 8px;
  	overflow: hidden;
  	margin-bottom: 20px;

}
.box-header{
	padding: 16px 10px;
	border-bottom: 1px solid  #ede4ff;
}
.box-header .box-title{
	font-size: 1.5rem;
	margin-bottom: 0;
	color: var(--primary-color);
}



.course_item_box{
	border: 1px solid #ecf3ff;
	padding: 1rem;
	background: #fff;
	margin-bottom: -1px;
  position: relative;
}
.course_item_box:hover{
	background: #f9fbff;
}

.course_item_icon{
	padding: 4px;
	font-size: 24px;
	background: #eee;
	width: 40px !important;
	height: 40px;
	text-align: center;
	border-radius: 6px;
}

.btn-height-form-control{
	height: 42px;
}

.course_item_box.type_folder .course_item_icon{
	background-color: #FAE9C9 !important;
	color: #EA780E;
}


.course_item_box.type_video .course_item_icon{
	color: #BD2929;
	background: #FAE4E4 !important;

}
.course_item_box.type_study_material .course_item_icon{
	color: #044FC0;
	background: #E0ECFE !important;

}
.course_item_box.type_live_class .course_item_icon{
	color: #fff;
	background: #BD2929 !important;

}

.main_container{
	min-height: 100vh;
}
.course_item_box .course_item_title{
	padding-left: 20px;
	font-size: 1.4rem;
	font-weight: 700;
}

.course_item_box .course_item_folder_title{
	font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
    height: 64px;
    overflow: hidden;
}

.course_item_file_box{
	background: #f5f6fb;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
}
.course_item_file_box:not(:last-child) {
    margin-bottom: 10px; /* Adjust as needed */
}

.w-xs-100{
	width: 100%;
	display: block !important;
}

.nav-underline{
	border-bottom: 1px solid #d5e4fb;
}
.nav-underline .nav-link.active, 
.nav-underline .show>.nav-link {
    font-weight: 700;
    color: #044fc0 !important;
    /* background: #f7f9ff  !important; */
    border-bottom-color: #044fc0;
}
.nav-underline .nav-link {
    font-weight: 300;
    color: #888 !important;
	padding: 5px 10px;
}


input::placeholder {
    color: #ccc !important; /* Replace with your desired color */
    opacity: 1; /* Optional: Ensures color opacity in some browsers */
}


.course_title{
	display: -webkit-box; /* Required for line clamping */
  -webkit-box-orient: vertical; /* Specifies the orientation of the box */
  overflow: hidden; /* Hides the overflowing content */
  text-overflow: ellipsis; /* Adds ellipsis for overflow text */
  -webkit-line-clamp: 2; /* Limits the number of lines to 2 */
  height:calc(1.5rem*2);
}

.card-body .course_title, .card-body .course_subtitle{
	display: -webkit-box; /* Required for line clamping */
  -webkit-box-orient: vertical; /* Specifies the orientation of the box */
  overflow: hidden; /* Hides the overflowing content */
  text-overflow: ellipsis; /* Adds ellipsis for overflow text */
  -webkit-line-clamp: 2; /* Limits the number of lines to 2 */
  height:calc(1.5rem*2);
}


.expandable {
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.expandable.expanded {
    white-space: normal;
}
    
/* Styling the sortable items */
.sortable_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sortable_item {
  padding: 10px;
  margin: 5px 0;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  cursor: move;
}

.sortable_item.dragging {
  opacity: 0.5;
}

.sortable-ghost {
  opacity: 0.4;
  background-color: #e0e0e0;
}

.billing_box{
  padding: 1rem;
/*    background: #ffe0d6;*/
    border: 0px;
    border-radius: 8px;
/*    color: #a30d1b;*/
    font-size: 0.875rem;

}
/* responsive tables start */

table.responsive {
  width: 100%;
  border-collapse: collapse;
}

table.responsive th, table.responsive td {
  border: 1px solid #ddd;
  padding: 8px;
/*  text-align: left;*/
}

table.responsive th {
  background-color: #f4f4f4;
}
/* Responsive Design */
    @media screen and (max-width: 768px) {
      .responsive, .responsive thead, .responsive tbody, .responsive th, .responsive td, .responsive tr {
        display: block;
      }

      .responsive thead tr {
        display: none; /* Hide the header row */
      }

      .responsive tr {
        margin-bottom: 20px;
        border: 1px solid #ddd;
        box-shadow: 0px 0px 14px 10px rgba(0,0,0,0.01);
      }
      .responsive th{
      	background: #eee !important;
      }
      .responsive td {
        position: relative;
        padding-left: 50%;
        text-align: right;
        background: #fff;
        border: 0px !important;
        border-bottom: 1px solid #EEE ! IMPORTANT;
      }
       .responsive td:last-child{
       	border-bottom: 0px !important;
       }

      .responsive td::before {
        content: attr(data-cell);
        position: absolute;
        left: 10px;
        width: 45%;
        text-align: left;
        font-weight: bold;
      }
    }
/* responsive tables end */

@media (min-width:1024px){
	.w-md-auto{
		width: auto;
		display: inline-block;
	}
}



.page_top_box{
	padding: 20px;
	background: #ebf1fa;
	border: 1px solid #ddebff;
}


body.embedded .dashboard_top_bar,
body.embedded .dashboard_left_column{
	display: none;
}



.testimonial_box{
  background-color: #fcfcfc !important;
  border-radius: 0px;
  border-left: 4px solid #044FC0;
  
}
.testimonial_box .testimonial_image_box{
  padding: 10px;
}
.testimonial_box .testimonial_image_box img{
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: 4px solid #eee;
}
.testimonial_box .testimonial_content_box{
  flex: 1;
  padding: 10px;
  padding-left: 0px;
}
.testimonial_box .testimonial_name{
  font-size: 1rem;
  font-weight: 800;
}
.testimonial_box .testimonial_designation{
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
}
.testimonial_box .testimonial_text{
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
  font-weight: 300;
}


.offering_box {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  padding: 20px;
  border: 1px solid #e8f0ff;
  /* box-shadow: 0 4px 20px rgba(68, 79, 255, 0.08); */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offering_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #044FC0, #4f7cff);
}


.offering_box .offering_icon{
  font-size: 28px;
  color: #044FC0;
  margin-bottom: 12px;
  display: block;
}

.offering_box .offering_title{
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.offering_box .offering_description{
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

/* FAQ Section Styles */
.faq_box {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  padding: 20px;
  border: 1px solid #e8f0ff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.faq_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #044FC0, #4f7cff);
}


.faq_question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}

.faq_question i {
  font-size: 20px;
  color: #044FC0;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq_answer {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Modern FAQ Accordion Styles */
.faq_accordion_container {
  max-width: 100%;
}

.faq_accordion_item {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border: 1px solid #e8f0ff;
  overflow: hidden;
  /* box-shadow: 0 4px 20px rgba(68, 79, 255, 0.08); */
  transition: all 0.3s ease;
}

.faq_accordion_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #044FC0, #4f7cff);
}



.faq_accordion_button {
  background: transparent !important;
  border: none !important;
  padding: 20px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #044FC0 !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
  text-align: left !important;
  position: relative !important;
  transition: all 0.3s ease !important;
}

.faq_accordion_button:not(.collapsed) {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%) !important;
  color: #044FC0 !important;
}

.faq_accordion_button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

.faq_accordion_button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23044FC0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  transition: transform 0.3s ease !important;
  transform: rotate(0deg) !important;
}

/* Force collapsed state to show down arrow */
.faq_accordion_button.collapsed::after,
.faq_accordion_button[aria-expanded="false"]::after {
  transform: rotate(0deg) !important;
}

/* Force expanded state to show up arrow */
.faq_accordion_button:not(.collapsed)::after,
.faq_accordion_button[aria-expanded="true"]::after {
  transform: rotate(180deg) !important;
}

.faq_accordion_body {
  background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
  padding: 20px !important;
  font-size: 14px !important;
  color: #666 !important;
  line-height: 1.6 !important;
  border-top: 1px solid #e8f0ff !important;
}

.course_top_background{
  min-height: 300px;
  background-color: #F5F6FB; 
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course_title_wrapper .course_detail_title,
.course_title_wrapper .course_detail_subtitle{
  color: #222;
}

.course_detail_side_card{
  box-shadow:0px 10px 50px 0px rgba(26, 46, 85, 0.07) !important;
  position: sticky !important;
  top: 75px;
}

@media (min-width: 992px) {
  .course_detail_side_column{
    position: relative; 
    top: -200px;
  }
}


.modal-title{
  color: #222 !important;
}
.modal-header{
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.modal-content{
  border-radius: 20px !important;
}