.headerContainer {
  /* display: flex; */
  align-items: center;
  padding: 5px;
/*  padding-top: 20px;*/
  /* gap: 20px; */
  margin-inline: 0 !important;
}
.headerContainer .toggleBtn {
  cursor: pointer;
  padding: 10px;
  display: flex;
}
.headerContainer .header-badge {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.headerContainer .header-badge .badge-profile {
/*  padding: 8px 4px;*/
}
.headerContainer .custom-search {
  /* display: flex;
  flex-grow: 1; */
}
@media (max-width: 992px) {
  .headerContainer .custom-search {
    visibility: hidden;
    opacity: 0;
    display: none;
  }
}
.headerContainer .custom-search input::-moz-placeholder {
  color: #63788d;
  font-size: 14px;
  font-weight: 400;
}
.headerContainer .custom-search input::placeholder {
  color: #63788d;
  font-size: 14px;
  font-weight: 400;
}
.headerContainer .notificationContainer {
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  position: relative;
  cursor: pointer;
}
.headerContainer .notificationContainer span {
  position: relative;
}
.headerContainer .notificationContainer span .badge-icon {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: #9E1A19;
  padding: 0em !important;
}
.headerContainer .notificationContainer .notificationDropdown {
  position: absolute;
  top: 40px;
  right: 0px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.2s ease-in-out;
  z-index: 9999;
  width: 340px;
}
.headerContainer .notificationContainer .notificationDropdown.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 340px;
  height: 500px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 5px 15px 0px rgba(130, 130, 130, 0.25);
  box-sizing: border-box;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-header-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-header-section .notifications-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-header-section .notifications-title-area .notifications-title-content {
  display: flex;
  flex-direction: column;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-header-section .notifications-title-area .notifications-title-content .notifications-main-title {
  color: #000;
  font-size: 20px;
  font-weight: 800;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-header-section .notifications-title-area .notifications-title-content .notifications-subtitle {
  color: #63788d;
  font-size: 14px;
  font-weight: 400;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-header-section .notifications-title-area .close-button {
  padding: 6px;
  cursor: pointer;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-header-section .section-divider {
  width: 100%;
  height: 1px;
  background: #d0d4da;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-group .date-header .date-title {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-group .notification-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-group .notification-item .session-image {
  flex-shrink: 0;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-group .notification-item .session-image img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  display: block;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-group .notification-item .notification-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-group .notification-item .notification-details .session-title h1 {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-group .notification-item .notification-details .session-description span {
  color: #63788d;
  font-size: 14px;
  font-weight: 400;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-group .notification-item .notification-details .session-time {
  display: flex;
  gap: 10px;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-group .notification-item .notification-details .session-time span {
  color: #888;
  font-size: 12px;
  font-weight: 400;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-group .notification-item .status-indicator {
  display: flex;
  align-items: center;
}
.headerContainer .notificationContainer .notificationDropdown .notifications-panel .notifications-group .section-divider {
  width: 100%;
  height: 1px;
  background: #d0d4da;
}


@media (min-width: 1201px) and (max-width: 1400px) {
  /* Styles for devices with width between 600px and 1200px */
  .homeConatiner .homeLhs .coursesWrapper .titleContainer {
    flex-basis: 40% !important;
  }
}