.teacher-board .summary-details-col .summary-details-card {
	position: inherit !important;
}

.error {color: red !important;}

.assessment_criteria {
	padding: 4px 7px;
    height: auto;
    width: auto;
    min-width: 40px;
    color: white;
    font-weight: 600;
    text-align: center;
    border: none;
	color:white;
}
.assessment_criteria option {
	padding: 4px 7px;
    height: auto;
    width: auto;
    min-width: 40px;
    color: white;
    font-weight: 600;
    text-align: center;
    border: none;
	color:white;
}
.assessment_criteria {
    font-size: 0.96rem;
    line-height: 1.25;
    background-clip: padding-box;
    border-radius: 5px;
    -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	border:none !important;
}

.assessment_criteria_default {
	background-color: #EB6729;
}

.assesment_criteria_yes {
    background-color: #04ACAE;
}

.assesment_criteria_no {
    background-color: #B14492;
}

/**/

.modal {overflow-y: auto !important;}

.blur-row {filter: blur(0px);pointer-events: none;}

/*body.semi-dark-layout .main-menu {
	background-color:#000 !important;
}

body.semi-dark-layout .main-menu-content .navigation-main {
	background-color:#000 !important;
}*/

.bc-mother {
	cursor:pointer;
}

.iv-question {
    background-color: #F5F5F1;
    padding: 0.7rem 0.7rem;
    border-radius: 5px;
}

.brief-select{
   border: 0px solid #ffffff!important;
}

.error-highlight {
	border-color: red !important; 
	border-width: 2px !important; 
}

.add-strategy-main h5 {
	font-size: 18px;
    color: #05acae;
    margin-bottom: 25px
}

/*.menu-title-desktop {
	color:white;
	font-size:12px;
}
body.vertical-layout.vertical-menu-modern.menu-collapsed .main-menu {
	width: 90px !important;
}*/


.tooltip-header {
    position: relative;
    cursor: pointer;
}

.hide {
	display: none;
}

.student-detail .header h5 {
    color: #05acae;
	margin-top:10px;
}
.student-detail .header {
    margin-bottom: 20px;
}
.student-detail .content .card {
    margin-right: 15px !important;
    margin-left: 15px;
    margin-top: 2rem !important;
}
.student-detail .content .content-wrapper {
    padding-right: 20px;
    padding-left: 20px;
}
.student-detail .content .block {
    margin-top: 5rem;
    margin-right: 15px !important;
}


.dashboard-custom .card {
  top: 15px;
  left: 20px;
  width: 300px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.16);

}
.dashboard-custom .text {
  color: #000000;
  font-size: 24px;
  font-family: "Poppins";
  font-weight: 500;
  line-height: 31px;
  padding-left:10px;
}
.dashboard-custom .col-lg-4 {
  flex: 0 0 24.33333%;
}
/* datatable design*/

.custom-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;  /* Default background for unchecked */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.custom-checkmark.bg-orange {
    border: 2px solid #eb6829; /* Orange for Mandatory */
}

.custom-checkmark.bg-purple {
    border: 2px solid #d60d8c; /* Purple for Specialization */
}

.custom-checkmark.bg-blue {
    border: 2px solid #05acae; /* Blue for Common */
}

/* Background color when the checkbox is checked */
.custom-checkbox-container input:checked ~ .custom-checkmark.bg-orange {
    background-color: #eb6829;
    border-color: #eb6829;
}

.custom-checkbox-container input:checked ~ .custom-checkmark.bg-purple {
    background-color: #d60d8c;
    border-color: #d60d8c;
}

.custom-checkbox-container input:checked ~ .custom-checkmark.bg-blue {
    background-color: #05acae;
    border-color: #05acae;
}

/* The checkmark/tick when the checkbox is checked */
.custom-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox-container input:checked ~ .custom-checkmark:after {
    display: block;
}

.add-button {
	padding:10px;
}

.add-button i {
	font-size:10px !important;
	padding-right:2px;
}

/*div.dataTables_processing  {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	margin-left: -100px;
	margin-top: -22px;
	text-align: center;
	padding: 2px;
	z-index: 10;
}
div.dataTables_processing>div:last-child {
	position: relative;
	width: 80px;
	height: 15px;
	margin: 1em auto;
}

@keyframes datatables-loader-1{
	0%{transform:scale(0)}
	100%{transform:scale(1)}
}
@keyframes datatables-loader-3{
	0%{transform:scale(1)}
	100%{transform:scale(0)}
}
@keyframes datatables-loader-2{
	0%{transform:translate(0, 0)}
	100%{transform:translate(24px, 0)}
}

div.dataTables_processing>div:last-child>div:nth-child(1) {
	left: 8px;
	animation: datatables-loader-1 .6s infinite;
}
div.dataTables_processing>div:last-child>div:nth-child(2) {
	left: 8px;
	animation: datatables-loader-2 .6s infinite;
}
div.dataTables_processing>div:last-child>div:nth-child(3) {
	left: 32px;
	animation: datatables-loader-2 .6s infinite;
}
div.dataTables_processing>div:last-child>div:nth-child(4) {
	left: 56px;
	animation: datatables-loader-3 .6s infinite;
}
div.dataTables_processing>div:last-child>div {
	position: absolute;
	top: 0;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: rgb(13, 110, 253);
	background: rgb(13, 110, 253);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}*/

.pagination-controls {
	margin-top:5px;
}

/*.pagination{
	justify-content:flex-end !important;
}

.paging_simple_numbers .pagination .paginate_button {
  padding: 2px 4px;
}
.paging_simple_numbers .pagination .paginate_button .page-link {
  background-color: transparent;
  font-size: 13px;
  color: #333333;
  border: none;
  font-weight: 400;
  padding: 0;
}
.paging_simple_numbers .pagination .paginate_button .page-link:focus {
  box-shadow: none;
}
.pagination .page-item.active {
  background-color: transparent;
  border-radius: 0;
}

.pagination .page-item.active .page-link {
  z-index: 3;
  border-radius: 0;
  background-color: transparent;
  color: #04adaf;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  width: 15px;
  text-align:center;
}*/

.glh-options {
	height: auto;
}


.att-tardy {
  border-color: #ffc000;
  color: #fff;
  background: #ffc000;
}

.att-absent{
  border-color: #e51322;
  color: #fff;
  background: #e51322;
}

.att-present{
  border-color: #22b573;
  color: #fff;
  background: #22b573;
}

.att-holiday {
  border-color: #0070c0;
  color: #fff;
  background: #0070c0;
}

 .dataTables_scrollHead .submission-data-table thead tr{
    border: 2px solid #f3f5f9; /* Add a border around the first tr */
    text-align: center;
}
 .dataTables_scrollHead .submission-data-table thead tr:first-child th {
    vertical-align: middle; 
    padding: 10px; 
    border-right: 2px solid #f3f5f9; 
}
.submission-data-table thead tr:first-child th:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 0px;
}
.submission-data-table thead tr:nth-child(2) th:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 6px;
}
.submission-data-table thead tr:first-child th:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 0px;
}
.submission-data-table thead tr:nth-child(2) th:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 6px;
}
.submission-data-table tbody td:first-child {
    text-align: left !important;
    padding-left: 12px !important;
}





.main_section .inner_main .news_feed .card_title {
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  color: #333333;
  margin-bottom: 14px;
}
.main_section .inner_main .news_feed .news_feed_content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.main_section .inner_main .news_feed .news_feed_content .news_feed_img {
  max-width: 300px;
  height: 300px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .main_section .inner_main .news_feed .news_feed_content .news_feed_img {
    max-width: 280px;
  }
}
@media (max-width: 1200px) {
  .main_section .inner_main .news_feed .news_feed_content .news_feed_img {
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .main_section .inner_main .news_feed .news_feed_content .news_feed_img {
    max-width: 100%;
    width: 100%;
    max-height: -moz-max-content;
    max-height: max-content;
  }
}
.main_section .inner_main .news_feed .news_feed_content .news_feed_img img {
  border-radius: 8px;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .main_section .inner_main .news_feed .news_feed_content .news_feed_img img {
    max-width: 100%;
    width: 100%;
  }
}
.main_section .inner_main .news_feed .news_feed_content .news_feed_text {
  flex: 1;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*.main_section .inner_main .news_feed .news_feed_content .news_feed_text p {
  font-size: 14px;
  line-height: 1.6;
  color: #303335;
}*/

.main_section .inner_main .news_feed .news_feed_content .news_feed_text .social_activity {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main_section .inner_main .news_feed .news_feed_content .news_feed_text .social_activity .activity_icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main_section .inner_main .news_feed .news_feed_content .news_feed_text .social_activity .activity_icons .share_icon {
  cursor: pointer;
}

.main_section .inner_main .news_feed .news_feed_content .news_feed_text .social_activity .activity_icons .share_icon img {
  min-height: 25px;
  min-width: 27px;
}
.main_section .inner_main .news_feed .news_feed_content .news_feed_text .social_activity .activity_icons .media {
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .main_section .inner_main .news_feed .news_feed_content .news_feed_text .social_activity .activity_icons .media {
    gap: 10px;
  }
}
.main_section .inner_main .news_feed .news_feed_content .news_feed_text .social_activity .activity_icons .media span {
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  color: #000000;
}
.main_section .inner_main .news_feed .news_feed_content .news_feed_text .social_activity .activity_icons .media .comment_icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.main_section .inner_main .news_feed .news_feed_content .news_feed_text .social_activity .activity_icons .media .comment_icon .comt_icon {
  height: 25px;
  width: 25px;
  border: 0;
  background-color: transparent;
}
.main_section .inner_main .news_feed .news_feed_content .news_feed_text .social_activity .activity_icons .media .thumb_icon {
  background-color: #007afe;
  cursor: pointer;
  height: 31px;
  width: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
}
.main_section .inner_main .news_feed .news_feed_content .news_feed_text .social_activity .activity_icons .media .thumb_icon img {
  max-width: 100%;
  height: auto;
  width: 20px;
}
@media (max-width: 768px) {
  .main_section .inner_main .news_feed .news_feed_content .news_feed_text .social_activity .activity_icons {
    align-items: center;
  }
}
@media (max-width: 768px) {
  .main_section .inner_main .news_feed .news_feed_content {
    flex-direction: column;
  }
}

.round-image {
	border-radius:50%;
}


.datepickerfield .input-group .form-control, .datepickerfield .input-group .input-group-text {
    border-radius: 0 !important;
  }

/* Add rounded corners for the entire group */
.datepickerfield .input-group {
	border-radius: 0.375rem; /* Adjust based on your preference */
	overflow: hidden;
}

.datepickerfield .input-group-text {
	background-color:#E8EAF4;
}
.file-name{
	display:inline; 
	font-size: small;     
	background-color: #e8eaf4; 
	border-radius: 3px;
}

.flags-circle {
	margin-right:0px !important;
}

[data-column-name="student"] {
    min-width: 200px !important;
}

[data-column-name="assessor"] {
    min-width: 200px !important;
}

.meet_sofia_title .name-title {
    font-weight: 500;
    font-size: 18px;
}

.bx-wrapper {
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border: 0 !important;
}

.comments-heading {
	font-size:25px;
}

	.modal-comments {
		min-height: 400px; 
		overflow-y: auto;  
		border: 1px solid #ddd;
		border-radius: 8px;
		padding: 10px;
	}
	
	.comment-item {
		border: 1px solid #ccc; 
		padding: 10px;
		margin-bottom: 10px;
		border-radius: 13px; 
		background-color: #f9f9f9;
		box-sizing: border-box;
		letter-spacing: normal;
	}
	
	
	
.dropdown-notification ul{
	width: 24rem;
	--bs-dropdown-border-color: transparent;
	 box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.dropdown-notification ul hr{
	margin:0.65rem 0;
}

.grade-merit{
  background-color: #fef3e2;
  color: #e88935;
  padding: 4px 30px;
  border: 1px solid transparent;
  text-align: center;
  border-radius: 6px;
}

.grade-merit:hover{
  background-color: #e88935;
  color: #fef3e2;
}

.grade-unsatisfactory{
  background-color: #fcddde;
  color: #ed1c24;
  padding: 4px 10px;
  border: 1px solid transparent;
  text-align: center;
  border-radius: 6px;
}
.grade-unsatisfactory:hover{
  background-color: #ed1c24;
  color: #fcddde;
}
.grade-pass{
  background-color: #b2fddb;
  color: #1fc66d;
  padding: 4px 30px;
  border: 1px solid transparent;
  text-align: center;
  border-radius: 6px;
}
.grade-pass:hover{
  background-color: #1fc66d;
  color: #b2fddb;
}
.btn-cs-info-rounded-custom {
	display: inline-flex !important;
}