/* ROOT VARIABLE */
:root {
  --themeColor: #231E13;
  --backgroundColor: #17150E;
  --primaryColor: #DFAD00;
  --primaryLightColor: #CCA7421a;
  --whiteColor: #fff;
  --subTextColor: #BCBCBC;
  --textColor: #222629;
}

/* CUSTOM CSS HERE */
* {
  font-family: "Outfit";
  margin: 0;
  padding: 0;
  line-height: normal !important;
}

body {
  overflow: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  background-color: #dfad0021;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #DFAD00;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
}

/* FONT SIZE */
.font-34 {
  font-size: clamp(1.5rem, 1.375rem + 0.625vw, 2.125rem);
}

.font-30 {
  font-size: clamp(1.125rem, 0.975rem + 0.75vw, 1.875rem);
}

.font-24 {
  font-size: clamp(0.875rem, 0.75rem + 0.625vw, 1.5rem);
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem) !important;
}

.font-16 {
  font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-12 {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
}

.font-11 {
  font-size: clamp(0.5625rem, 0.5375rem + 0.125vw, 0.6875rem);
}

.font-10 {
  font-size: clamp(0.5rem, 0.475rem + 0.125vw, 0.625rem);
}

/* Gap */
.scalable-gap-24-16 {
  gap: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.scalable-gap-16-8 {
  gap: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
}

.scalable-gap-48-38 {
  gap: clamp(2.375rem, 2.25rem + 0.625vw, 3rem);
}

.scalable-gap-40-30 {
  gap: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
}

.gap-12 {
  gap: 12px;
}

/* PADDING */
.scalable-p-12-8 {
  padding: clamp(0.375rem, 0.3625rem + 0.0625vw, 0.4375rem) clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) !important;
}

.scalable-p-12-10 {
  padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
}

.scalable-p-50-40 {
  padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) clamp(2.1875rem, 2rem + 0.9375vw, 3.125rem) !important;
}

.scalable-p-35-28 {
  padding: clamp(0.5rem, 0.4625rem + 0.1875vw, 0.6875rem) clamp(1.75rem, 1.6625rem + 0.4375vw, 2.1875rem);
}

.scalable-p-24-16 {
  padding: clamp(0.375rem, 0.35rem + 0.125vw, 0.5rem) clamp(1.5rem, 1.375rem + 0.625vw, 2.125rem) !important;
}

.scalable-p-14-12 {
  padding: 14px 12px !important;
}

/* FONT WEIGHT */
.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* BACKGROUND */
.theme {
  background-color: var(--themeColor);
}

.backgroundColor {
  background-color: var(--backgroundColor);
}

.bgwhite {
  background-color: var(--whiteColor);
}

.bgRed {
  background-color: var(--redColor) !important;
}

.bgPrimary {
  background-color: var(--primaryColor);
}

.bgPrimaryLight {
  background-color: var(--primaryLightColor);
}

.bgRedLight {
  background-color: #FF59591A;
}

.bggreenLight {
  background-color: #2192321A;
}

.bgGrayLight {
  background-color: #B0B0B01A;
}

.clip-path {
  clip-path: border-box;
}

.bggreenColor {
  background-color: #219232;
}

/* COLOR */
.textColor {
  color: var(--themeColor);
}

.subTextColor {
  color: var(--subTextColor);
}

.primaryColor {
  color: var(--primaryColor);
}

.redColor {
  color: #FF5959;
}

.greenColor {
  color: #219232;
}

.themeColor {
  color: var(--themeColor);
}

.infoColor {
  color: #0979E8;
}

.warningColor {
  color: #ed4400;
}

:focus-visible {
  outline: var(--Primary-color) auto 0px;
}

.lh-0 {
  line-height: 0;
}

/* Filter */
.gray-filter {
  filter: brightness(0) saturate(100%) invert(93%) sepia(0%) saturate(300%) hue-rotate(135deg) brightness(103%) contrast(53%);
}

.yellow-filter {
  filter: brightness(0) saturate(100%) invert(78%) sepia(68%) saturate(4016%) hue-rotate(11deg) brightness(99%) contrast(105%);
}

.green-filter {
  filter: brightness(0) saturate(100%) invert(39%) sepia(99%) saturate(414%) hue-rotate(78deg) brightness(93%) contrast(88%);
}

.red-filter {
  filter: brightness(0) saturate(100%) invert(39%) sepia(77%) saturate(886%) hue-rotate(322deg) brightness(111%) contrast(106%);
}

.white-filter {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(268deg) brightness(101%) contrast(102%);
}

/* BUTTON */
.primary-button {
  background-color: var(--primaryColor);
  color: var(--textColor);
  border-radius: 24px;
  font-weight: 500;
  border: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  text-align: center;
  white-space: nowrap;
}

.plus-icon {
  height: 24px;
  width: 24px;
  background-color: #FFFFFF1A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.layered-button {
  position: relative;
  background-color: var(--primaryColor);
  color: var(--textColor);
  font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: clamp(0.5rem, 0.475rem + 0.125vw, 0.625rem) 0px 0px #9A7909;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layered-button-primary {
  width: 98%;
}

.layered-button span {
  margin-left: 10px;
  font-size: 20px;
}

.filter {
  background-color: var(--backgroundColor);
  border-radius: 6px;
  height: 40px;
  width: 40px;
}

/* LOGIN */
.login-background {
  background: var(--backgroundColor);
  padding: clamp(1.25rem, 0.9875rem + 1.3125vw, 2.5625rem) clamp(0.75rem, 0.2rem + 2.75vw, 3.5rem);
  ;
}

.login-form {
  padding: 24px 24px 24px 0px;
}

.login-form::-webkit-scrollbar {
  display: none;
}

.login-background-image {
  border-radius: 50px;
  object-fit: cover;
  height: 100%;
  /* height: calc(100dvh - 114px); */
}

.input-field {
  border-radius: 50px;
  border: 1px solid transparent;
  background-color: var(--primaryLightColor);
  padding: 10px 16px;
  font-weight: 400;
  width: 100%;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  transition: all 0.3s ease;
  color: var(--whiteColor);
}

textarea {
  resize: none;
}

.input-field:focus,
.input-field:hover {
  outline: none;
  border: 1px solid var(--primaryColor);
}

.input-field::placeholder {
  color: var(--subTextColor);
}

.cursor-pointer {
  cursor: pointer;
}

.otp-field .input-field {
  width: 50px;
  height: 50px;
  text-align: center;
  font-weight: 500;
  font-size: clamp(1.0625rem, 1rem + 0.3125vw, 1.375rem);
}

.eyeoff-icon {
  position: absolute;
  right: 16px;
  top: 12px;
}

.eye-icon {
  position: absolute;
  right: 16px;
  top: 10px;
}

/* checkbox */
.custom-checkbox input {
  opacity: 0;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 4px;
  background: var(--subTextColor);
  border: 1px solid #807F7C;
}

.custom-checkbox input:checked~.checkmark {
  background: linear-gradient(to left, #F5BF03, #AE7A17);
  border: none;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

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

.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--whiteColor);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(43deg);
}

/* Main container */
.main-container {
  background-color: var(--backgroundColor);

}

.scroll-bar {
  height: 100%;
  overflow: hidden;
  overflow-y: scroll !important;
}

.scroll-bar::-webkit-scrollbar {
  display: none;
}

.card-content {
  height: calc(100% - 56px);
}

/* SIDEBAR */
.menu {
  height: calc(100% - 102px);
}

.sidebar-icon {
  border-radius: 50px;
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
}

.logo-sidebar {
  img {
    height: 80px;
  }
}

.sidebar {
  width: 70px;
  flex: none;
  background-color: var(--themeColor);
  transition: 0.3s width, 1s background;
  border-radius: 24px;
  height: 100%;
}

.sidebar .menu-text {
  display: none;
}

.svg-color path {
  fill: var(--subTextColor);
}

.svg-stroke path {
  stroke: var(--subTextColor);
}

.menu .active {
  border-left: 2px solid #F5BF03;
  background-color: #2F281A;
  transition: 1s background;

  .sidebar-icon {
    background-color: transparent;
  }

  .svg-color path {
    fill: var(--primaryColor);
  }

  .svg-stroke path {
    stroke: var(--primaryColor);
  }

  .menu-text {
    color: var(--primaryColor) !important;
  }

}

.sidebar.collapsed {
  width: 250px;

  .active {
    width: 100%;
  }

  .menu-text {
    display: inline;
    color: var(--subTextColor);
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 400;
  }

}

li {
  list-style: none;
}

/* NAVBAR */
.navBar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px);
  background-color: var(--themeColor);
  padding: 12px 16px;
  transition: background-color 0.3s ease, padding 0.3s ease;
  z-index: 99 !important;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.iconBackground {
  display: flex;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: var(--backgroundColor);
  transition: all 0.6s ease;
}

.iconBackground:hover {
  background-color: var(--primaryColor);
}

.iconBackground:hover {
  .fill-icon {
    fill: var(--backgroundColor);
  }
}

.pills-background {
  background-color: var(--backgroundColor);
  border-radius: 47px;
}

.notification {
  height: 45px;
  width: 45px;
  background-color: var(--backgroundColor);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* DASHBOARD */
.main-content {
  background-color: var(--backgroundColor);
  width: 100%;
}

.sidebar-container {
  display: flex;
  align-items: flex-start;
}

.dashboard-card {
  padding: 24px;
  border-radius: 16px;
  height: 100%;
  background-color: var(--backgroundColor);

}

.dashboard-card-custom {
  padding: 24px;
  border-radius: 16px;
  height: 100%;

  background-color: var(--backgroundColor);
}

@media (max-width: 1200px) {
  .dashboard-card-custom {
    max-height: 450px;
    overflow-y: scroll;
  }

}

.singleLine {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.parent-card-background {
  background-color: var(--themeColor);
  border-radius: 24px;
  overflow: hidden;
}

/* Sessions Cards*/
.sessions-card {
  position: relative;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(90deg, #231E13, #231E13) padding-box, linear-gradient(178deg, #F5BF03, #553904) border-box;
  border: 1px solid transparent;
  gap: 12px;
  height: 100%;
}

.circle {
  width: 30px;
  height: 30px;
  background: linear-gradient(90deg, #AE7A17, #F5BF03);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
}

.dashed-border {
  border-bottom: 1px dashed var(--primaryLightColor);
}

.borderBottom {
  border-bottom: 1px solid var(--primaryLightColor);
}

.edit-profile {
  height: clamp(3.75rem, 3rem + 8.75vw, 7.5rem);
}
.table-responsive {
   display: block; /* break it out of flex flow */
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table{
    min-width: 800px;
}
/* Table */
.table-responsive::-webkit-scrollbar {
  display: none;
}

tr th:first-child,
tr td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

tr th:last-child,
tr td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.input-search {
  border-radius: 8px;
  background: var(--primaryLightColor);
  padding: 8px;
  border: 1px solid transparent;
  transition: background 0.3s ease, border 0.3s ease;
}

.search-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-avtar {
  height: 46px;
  width: 46px;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1;
  background: linear-gradient(90deg, #231E13, #231E13) padding-box, linear-gradient(178deg, #F5BF03, #553904) border-box;
  border: 2px solid transparent;
}

.verification-profile-view {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: bold;
  color: black;
  background: linear-gradient(178deg, #F5BF03, #553904);
  /* fill */
}

.avatar-fallback {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #AE7A17, #F5BF03);
  color: #0c0c0c;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9;
}

/* tbody, td, tfoot, th, thead, tr{
  border-radius: 10px !important;
} */
tr {
  border: 1px solid transparent;
}

tbody tr {
  transition: background-color 0.3s ease-in-out;
}

tbody tr:hover {
  background-color: #2F281A;
  cursor: pointer;
}

tbody tr:hover td,
tbody tr:hover td a {
  color: var(--whiteColor);
  transition: color 0.3s ease-in-out;
}

.table>:not(caption)>*>* {
  border-bottom-width: 0 !important;
}

.table-responsive {
  th {
    color: var(--whiteColor);
    font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
    font-weight: 400;
    padding: 16px 24px !important;
    white-space: nowrap;
  }

  td {
    color: var(--subTextColor);
    font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
    font-weight: 400;
    padding: 16px 24px !important;
    line-height: 26px !important;
    white-space: nowrap;
    vertical-align: middle;
  }

  /* margin-bottom: -60px !important; */
}


td a {
  color: var(--subTextColor);
}

/* .table-data {
  height: calc(100% - 71px);
} */
.table-data {
  height: calc(-415px + 100vh);
}

.userList-table-data {
  height: calc(-612px + 100vh);
}

.table-icon {
  width: 32px;
  height: 32px;
  border-radius: 26px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.edit:hover {
  background-color: var(--themeColor);
  transform: scale(1.1);

  img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(7497%) hue-rotate(13deg) brightness(111%) contrast(115%);
  }
}

.delete:hover {
  background-color: var(--redColor);
  transform: scale(1.1);

  img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(7497%) hue-rotate(13deg) brightness(111%) contrast(115%);
  }
}

.status-circle {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  display: flex;
}

/* TABLE PAGINATION CSS */

.page-link.active {
  color: var(--whiteColor) !important;
  background-color: var(--primaryLightColor) !important;
  outline: 0;
  box-shadow: none !important;
}

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;

  .arrow {
    background-color: var(--primaryLightColor);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    padding: 8px clamp(0.375rem, 0.275rem + 0.5vw, 0.875rem);
    color: var(--whiteColor);
    border-radius: 100px;
    align-items: center;
  }

  .page-link {
    color: var(--subTextColor);
    font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
    font-weight: 500;
    width: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    height: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: transparent;
  }

  .arrow.active {
    background-color: var(--primaryColor);

    img {
      filter: brightness(0) saturate(100%) invert(11%) sepia(26%) saturate(264%) hue-rotate(163deg) brightness(92%) contrast(90%);
    }

    span {
      color: var(--textColor);
      font-weight: 500;
    }
  }
}

.pagination {
  --bs-pagination-border-color: none !important;
}

.page-link:hover {
  z-index: 2;
  color: var(--whiteColor) !important;
  background-color: var(--primaryLightColor) !important;
  border-color: var(--bs-pagination-hover-border-color);
}

/* CUSTOM TOGGLE BTN */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  cursor: pointer;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #D4D4D4;
  transition: .1s;
  width: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
  height: clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem);
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.slider:before {
  position: absolute;
  content: "";
  height: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
  width: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
  left: 5px;
  bottom: 4px;
  background-color: #E9E9E9;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.20);
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

input:checked+.slider {
  background-color: var(--primaryColor);
  border: 1px solid transparent;
}

input:checked+.slider:before {
  transform: translateX(clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem));
  bottom: 3px;
  background-color: var(--whiteColor);
}

.breadcrumb {
  height: 18px;
}

.breadcrumb-item.active {
  color: var(--primaryColor) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--whiteColor) !important;
}

/* filter */
.filter {
  .dropdown-menu.show {
    background-color: var(--backgroundColor);
    padding: 12px 8px;
    transform: translate(0px, 48px) !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .dropdown-item {
    color: var(--whiteColor);
    padding: 4px 6px;
    font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
  }

  .dropdown-item:hover {
    color: var(--whiteColor);
    background-color: var(--primaryLightColor);
    border-radius: 2px;
  }

  .dropdown-item:focus,
  .dropdown-item:hover {
    color: var(--whiteColor);
  }
}

.filter-type {
  .dropdown-menu.show {
    background-color: var(--backgroundColor);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translate(0px, 55px) !important;
  }

  .dropdown-item {
    color: var(--whiteColor);
    padding: 4px 6px;
    font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
  }

  .dropdown-item:hover {
    color: var(--whiteColor);
    background-color: var(--primaryLightColor);
    border-radius: 2px;
  }

  .dropdown-item:focus,
  .dropdown-item:hover {
    color: var(--whiteColor);
  }
}

/* Container for the custom select */
.custom-select {
  position: relative;
}

.select {
  cursor: pointer;

  .form-select {
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
    font-weight: 400;
    padding: 10px 16px;
    color: var(--textColor);
    box-shadow: none;
    line-height: normal;
    border-radius: 50px;
    border: 1px solid transparent;
    background-color: var(--primaryLightColor);
    transition: all 0.3s ease;
    color: var(--whiteColor);
    --bs-form-select-bg-img: url(../images/svg/selectArrow.svg);
    background-size: 20px 20px;
  }
}

.dropdown-options {
  display: none;
  position: absolute;
  top: 48px;
  z-index: 10;
  background-color: var(--backgroundColor);
  width: 100%;
  max-height: 220px;
  overflow: auto;
  box-shadow: 0px 1px 12px 8px rgb(79 79 79 / 5%);
  border-radius: 8px;
}

.dropdown-options-list {
  padding: 10px;
  cursor: pointer;
  color: var(--whiteColor);
}

.dropdown-options-list:hover {
  background-color: var(--primaryLightColor);
}

.custom-select.active .dropdown-options {
  display: block;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--whiteColor) !important;
}

/* Upload image */
.upload-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px dashed var(--primaryColor);
  border-radius: 12px;
  color: #d4a007;
  font-family: Arial, sans-serif;
  padding: clamp(0.5625rem, 0.525rem + 0.1875vw, 0.75rem);
  cursor: pointer;
}

.file-input {
  display: none;
}

.action-btn {
  padding: clamp(0.25rem, 0.225rem + 0.125vw, 0.375rem) clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  border-radius: 20px;
}

.arrow-icon {
  height: 20px;
  width: 20px;
  border-radius: 50%;
}

.status-dropdown {
  .dropdown-menu.show {
    background-color: var(--backgroundColor);
    padding: 12px 8px;
    transform: translate(0px, 28px) !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .dropdown-item {
    color: var(--whiteColor);
    padding: 4px 6px;
    font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
  }

  .dropdown-item:hover {
    color: var(--whiteColor);
    background-color: var(--primaryLightColor);
    border-radius: 2px;
  }
}

.verification-profile {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  background: linear-gradient(90deg, #231E13, #231E13) padding-box, linear-gradient(178deg, #F5BF03, #553904) border-box;
  border: 2px solid transparent;
}

.verification-profile-status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #219232;
  position: absolute;
  right: 21px;
  bottom: 14px;
}

.social-box {
  border-radius: 6px;
  padding: 6px 10px;
}

.chat {
  background: linear-gradient(90deg, #231E13, #231E13) padding-box, linear-gradient(260deg, #F5BF03, #553904) border-box;
  border: 2px solid transparent;
}

.voiceCall {
  background: linear-gradient(90deg, #231E13, #231E13) padding-box, linear-gradient(260deg, #23B1FD, #0979E8) border-box;
  border: 2px solid transparent;
}

.vedioRecord {
  background: linear-gradient(90deg, #231E13, #231E13) padding-box, linear-gradient(260deg, #E97726, #A14503) border-box;
  border: 2px solid transparent;
}

.grid_cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(144px, 1fr));
  gap: 16px;
  border-top: 1px solid var(--primaryLightColor);
  padding-top: 24px;
}

.grid_card {
  border-radius: 6px;
  background-color: var(--primaryLightColor);
  padding: 6px 14px;
}

.document-img {
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 1.40 / 1;
  width: 100%;
}

/* date icon */
.custom-date-input::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.custom-date-icon {
  position: absolute;
  right: 16px;
  top: 31%;
  cursor: pointer;
}

/* ck-editor */
.ck-editor__editable_inline {
  height: 300px;
}

#app {

  .ck-reset_all :not(.ck-reset_all-excluded *),
  .ck.ck-reset_all {
    color: #fff;
    background-color: #cca74205;
    border-radius: 4px;
  }

  .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused) {
    background-color: var(--primaryLightColor);
    border-color: transparent;
    color: var(--whiteColor);
  }

  .ck.ck-editor__main>.ck-editor__editable {
    background: var(--primaryLightColor);
    border-radius: 0px 0px 6px 6px;
    color: var(--whiteColor);
  }

  .ck.ck-editor__editable.ck-focused:not(.ck-editor__nested-editable) {
    border-color: transparent;
  }

  p {
    color: var(--whiteColor);
  }

  .ck.ck-toolbar {
    border: 1px solid transparent;
  }
}

/* user List  */
.user-list-details {
  background-color: var(--backgroundColor);
  border-radius: 10px;
}

.user-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  gap: 24px;
}

.community-user-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 24px;
}

.user-list {
  .user-list-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
  }

  .nav-link {
    width: 100%;
  }
}

.nav-pills .nav-link {
  border-radius: 8px;
  background: var(--primaryLightColor);
  padding: clamp(0.375rem, 0.325rem + 0.25vw, 0.625rem) clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
  color: var(--whiteColor);
  border: 2px solid transparent;
  min-width: clamp(6.875rem, 6.375rem + 2.5vw, 9.375rem);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  border: 2px solid rgba(255, 255, 255, 0.17);
  background: var(--primaryColor) !important;
  box-shadow: 0px 1px 10px 0px rgba(17, 94, 104, 0.27);
  color: var(--textColor) !important;
  font-weight: 600;
}

/* search Expertise */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--whiteColor);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
  background: linear-gradient(90deg, #231E13, #231E13) padding-box, linear-gradient(216deg, #F5BF03, #553904) border-box;
  border: 2px solid transparent;
  font-weight: 400;
}

.days-name {
  background-color: var(--backgroundColor);
  border-radius: 4px;
  padding: 4px 8px;
}

.cancel-btn {
  border: 1px solid var(--subTextColor);
  border-radius: 8px;
  background-color: transparent;
  padding: 6px 12px;
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
}

/* session filters */
.picker-box {
  background-color: #1a150a;
  padding: 8px 12px;
  border-radius: 8px;
}

.picker-box input {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
}

.picker-box input:focus {
  outline: none;
}

.icon {
  font-size: 18px;
}

.dropdown-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #c2b89c;
}

.search-filter-button {
  border-radius: 30px;
  background-color: var(--primaryColor);
  width: 104px;
  border: 0;
  padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) 12px;
  height: 100%;
}

.sessions-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.large-modal {
  max-width: 600px !important;
}

.session-rating {
  background-color: var(--themeColor);
  border-radius: 12px;
  padding: 12px;
}

.recorded-img {
  border-radius: 8px;
}

/* Modal css */
.modal-container {
  .modal-content {
    background-color: var(--backgroundColor);
    border-radius: 12px;
    padding: 30px 16px 30px 16px;
  }
}

/* Event Card */
.event-card {
  background-color: var(--backgroundColor);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.event-image {
  position: relative;
  width: 100%;
}

.event-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.95 / 1;
  display: block;
}

.date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--whiteColor);
  border-radius: 8px;
  text-align: center;
  height: 40px;
  width: 44px;

}

.date-badge span {
  display: block;
}

.free-badge {
  position: absolute;
  background: rgb(42 42 42 / 63%);
  padding: 4px 10px;
  width: 95%;
  bottom: 0;
  text-align: end;
}

.event-content {
  padding: 12px;
}

.event-details {
  font-size: 14px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.event-details img {
  width: 16px;
  height: 16px;
}

.location img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.physical-event-img {
  height: 30vh;
  object-fit: cover;
}

.filters-btn {
  align-items: center;
}

/* NOTIFICATION */
.offcanvas {
  border-radius: 16px 0px 0px 16px;
  background: var(--backgroundColor) !important;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.17);
  padding: 24px;
}

.offcanvas.offcanvas-end {
  top: clamp(1rem, 0.9rem + 0.5vw, 1.5rem) !important;
  right: clamp(1rem, 0.9rem + 0.5vw, 1.5rem) !important;
  bottom: clamp(1rem, 0.9rem + 0.5vw, 1.5rem) !important;
  width: min(400px, 80vw) !important;
  border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem) !important;
  border: 1px solid var(--strokeColor) !important;
}

.offcanvas-backdrop {
  backdrop-filter: blur(13px);
  background-color: rgb(var(--mui-palette-background-paperChannel) / 0.85) !important;
  opacity: 1 !important;
}

.notification-card {
  padding: 12px;
  border-radius: 8px;
}

.notification-card:hover {
  background-color: var(--themeColor);
}

.notification-icon {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.notificaton-time {
  white-space: nowrap;
}

/* rating */
.star-rating {
  display: inline-block;
}

.star {
  font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
  color: var(--primaryColor);
}

.unfilled {
  color: var(--subTextColor);
}

/* create event redio button */
.event-type {
  display: flex;
  gap: 20px;
  align-items: center;
}

.radio {
  display: none;
}

.custom-radio {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: linear-gradient(90deg, #231E13, #231E13) padding-box, linear-gradient(262deg, #F5BF03, #553904) border-box;
  border: 2px solid transparent;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.radio:checked+.custom-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, #AE7A17, #F5BF03);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.event-type {
  border-radius: 50px;
  background-color: var(--primaryLightColor);
  padding: 12px 16px;
}

.create-link {
  padding: 8px;
  background: linear-gradient(90deg, #AE7A17, #F5BF03);
  border-radius: 6px;
  border: 0;
}

.event-input {
  display: none;
}

/* Show input field when a radio button is checked */
input[name="event"]:checked~.event-input {
  display: block;
}

/* add css new */
.cancel-btn-modal {
  border-radius: 100px;
  border: 1px solid var(--subTextColor);
  background-color: transparent;
  padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) clamp(3.4375rem, 3.3125rem + 0.625vw, 4.0625rem);
}

/* profile dropdown */
.profile-tabs {
  width: clamp(8.125rem, 7.625rem + 2.5vw, 10.625rem);
}

.profile-background {
  padding: 8px clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
}

.profile {
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  background: linear-gradient(90deg, #231E13, #231E13) padding-box, linear-gradient(178deg, #F5BF03, #553904) border-box;
  border: 2px solid transparent;
}

.profile-dropdown {
  .dropdown-menu {
    border-radius: 8px;
    background: var(--backgroundColor);
    box-shadow: 0px 0px 10px 0px #DFAD001A;
    width: 200px;
  }
}

.profile-tabs-list {
  .nav-pills {
    justify-content: center;
  }
}

.profile-dropdown-list:hover {
  background-color: var(--primaryLightColor);

  img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(268deg) brightness(101%) contrast(102%);
  }

  h3 {
    color: var(--whiteColor);
  }
}

.logout:hover {
  background-color: #FF59591A;
}

.months-select {
  border-radius: 4px;
  border: 1px solid var(--subTextColor);
  background: transparent;
  padding: clamp(0.125rem, 0.1rem + 0.125vw, 0.25rem) clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem);
  font-weight: 500;
  color: var(--subTextColor);
}

.edit-icon {
  bottom: 5px;
  right: clamp(3.75rem, 3.3625rem + 1.9375vw, 5.6875rem);
  background-color: var(--primaryColor);
  border-radius: 50%;
  cursor: pointer;
  height: 24px;
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* add css 04/04/2025 */
.chapter-head-list {
  padding: 8px 16px;
  border-radius: 8px;
}

.chapter-head-list:hover {
  background-color: #2F281A;

  h3 {
    color: var(--whiteColor);
  }
}

.input-search:focus-within {
  background: linear-gradient(90deg, #231E13, #231E13) padding-box,
    linear-gradient(210deg, #F5BF03, #AE7A17) border-box;
  border: 1px solid transparent;
}

/* select list checkbox */
.chapter-head-modal {
  .chapter-head-list {
    position: relative;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
  }

  .custom-checkbox {
    display: none;
    width: 18px;
    height: 18px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    position: relative;
  }

  .chapter-head-list.selected .custom-checkbox {
    display: inline-block;
  }

  .custom-checkbox.checked::after {
    content: '✔';
    color: #fff;
    font-size: 11px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.testimonials-card {
  border-radius: 12px;
  padding: 16px clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
  background-color: var(--primaryLightColor);
}

.slips-list-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(273px, 1fr));
  gap: 24px;
}

.slips-container {
  .nav-link {
    padding: 24px;
    border-radius: 16px !important;
    height: 100%;
    background-color: var(--backgroundColor);
  }

  .nav-pills .nav-link.active,
  .nav-pills .show>.nav-link {
    background: linear-gradient(90deg, #231E13, #231E13) padding-box, linear-gradient(178deg, #F5BF03, #553904) border-box !important;
    border: 2px solid transparent;
    box-shadow: none !important;
  }
}

.date-box {
  border-radius: 8px;
  border: 1px solid var(--subTextColor);
  padding: 8px;
  display: flex;
  justify-content: end;

  input {
    width: 80%;
  }

  .custom-date-icon {
    position: absolute;
    left: 10px;
    top: 26%;
    cursor: pointer;
  }

}

/* Analytics */

.toggle-btns {
  width: 24px;
  height: 24px;
  border: 1px solid #888;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.toggle-btns input {
  display: none;
}

.inner-box {
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background-color: transparent;
}

.toggle-btns.active {
  border-color: var(--primaryColor);
}

.toggle-btns.active .inner-box {
  background-color: var(--primaryColor);
}

.tab-btn {
  padding: 8px;
  border: 1px solid var(--subTextColor);
  border-radius: 6px;
  background-color: transparent;
}

.tab-btn.active {
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor)
}

.error {
  color: #e11717;
  font-size: 13px;
  font-weight: 400;
}

.ql-toolbar {
  svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  }
}







/* MEDIA QUERIES */
@media (max-width: 992px) {
  .sidebar {
    position: absolute;
    width: 0px;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--themeColor);
    height: 94%;
    margin: 16px;
    overflow: hidden;

    .logo {
      padding-right: 12px;
    }

    .menu {
      padding: 16px 12px 16px 12px;
    }
  }

  .sidebar.collapsed {
    width: 230px;

    .logo-sidebar img {
      display: block;
    }
  }

  .main-content {
    border-radius: 0px;
  }

  .sidebar-container:has(.collapsed)::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 998;
    backdrop-filter: blur(4px);
  }

  .logo-sidebar {
    img {
      display: none;
    }
  }

  .chart-cards {
    .col-md-6 {
      width: 100%;
    }

    .col-md-8 {
      width: 100%;
    }

    .col-md-4 {
      width: 100%;
    }
  }

  .sidebar-container {
    display: block;
  }

  .logout-section-sticky {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    opacity: 0 !important;
  }

  .sidebar.collapsed .logout-section-sticky {
    display: flex !important;
    visibility: visible !important;
    height: auto !important;
    opacity: 1 !important;
  }

  #logout {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .sidebar.collapsed #logout {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

}


@media (max-width:575px) {
  .table-pagination {
    padding: 16px;

    span {
      display: none;
    }
  }

  .pagination {
    width: 50%;
    overflow-x: scroll;

  }

  .pagination::-webkit-scrollbar {
    display: none;
  }

  .search-button {
    flex-direction: column;
    align-items: end;
    gap: 12px;
  }

  .sessions-type {
    overflow-x: scroll;
    width: 100%;
  }

  .table-pagination {
    .arrow {
      padding: 8px;
    }
  }

  .input-search {
    width: 100%;

    input {
      width: 100%;
    }
  }

  .sessions-filters {
    flex-wrap: wrap;
    gap: 16px;
  }

  .user-list {
    .user-list-tabs {
      grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
    }
  }

  .profile-hide {
    display: none;
  }

}


@media (max-width:767px) {
  .login-form {
    padding: 24px;
  }

  .layered-button-primary {
    width: 98%;
  }

  .user-list-details {
    flex-direction: column;
  }

  .upload-document {
    .col-md-4 {
      width: 50%;
    }
  }

  .filters-btn {
    flex-direction: column;
    align-items: end !important;
  }

  .event-filter {
    .search-button {
      flex-direction: column;
      align-items: end;
    }

    .filters-btn {
      flex-direction: row;
      align-items: center !important;
    }
  }
}


@media (max-width: 1400px) and (min-width: 992px) {
  #main-content {
    width: calc(100% - 95px);
    transition: width 0.3s ease;
  }

  #main-content.sidebar-collapsed {
    width: calc(100% - 275px);
  }
}

@media (max-width: 1100px) {
  .dashboard-container {

    .col-md-8,
    .col-md-4 {
      width: 100%;
    }
  }

  .verification-details-container {

    .col-md-8,
    .col-md-4 {
      width: 100%;
    }
  }
}

@media (min-width:575px) and (max-width:992px) {
  .sessions-type {
    flex-wrap: wrap;
  }

  .sessions-filters {
    align-items: end;
  }

  .event {
    .search-button {
      flex-direction: column;
      justify-content: end;
      align-items: end;
      gap: 16px;
    }

  }
}




@media (max-width: 420px) {
  .navBar {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }





}
