:root {
  --theme-purple: #535bff;
  --bs-primary: #535bff;
  --bs-teal: #00AC97;
}

.bg-primary {
  background-color: var(--theme-purple) !important;
}

.text-primary {
  color: var(--theme-purple) !important;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--theme-purple);
  --bs-btn-border-color: #535bff;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--theme-purple);
  ;
  --bs-btn-disabled-border-color: var(--theme-purple);
  ;
}

.btn-outline-primary {
  --bs-btn-color: var(--theme-purple);
  --bs-btn-border-color: var(--theme-purple);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--theme-purple);
  --bs-btn-hover-border-color: var(--theme-purple);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--theme-purple);
  --bs-btn-active-border-color: var(--theme-purple);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--theme-purple);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--theme-purple);
  --bs-gradient: none;
}

body {
  font-family: "Roboto", sans-serif;
}

.login_card {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  margin-top: 50px;
  padding: 80px 40px;

  border-radius: 5px;
  background-color: #fff;
  box-shadow: 4px 4px 20px rgba(83, 91, 255, 0.2);
}

a {
  color: #535bff;
  text-decoration: none !important;
}

h3 {
  color: #1f2a3d;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.form-label {
  color: #6d7584;
  font-size: 14px;
  margin-bottom: 0.2rem;
}

.forgot_password {
  color: #6d7584;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

.search_box {
  position: relative;
  width: 350px;
}

.search_box button {
  position: absolute;
  right: 5px;
  top: 0;
  height: 100%;
  background-color: transparent;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.search_box input[type="search"] {
  width: 100%;
  height: auto;

  /* padding: 0 34px 0px 20px; */

  font-weight: 400;
  color: #1f2a3d;
}

.table thead th {
  color: #1f2a3d;
}

.table tbody tr:hover {
  background-color: #6d7584;
}

.px-6 {
  padding-right: 8rem !important;
  padding-left: 8rem !important;
}

h4 {
  color: #535bff;
  font-size: 16px;
  font-weight: bold;
}

.text-2 {
  font-size: 0.875rem;
  color: #6d7584;
}

/* .page-item.disabled .page-link,
.page-link {
  background-color: transparent;
  border: 0px;
} */
.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;
}

.custom_dropdown {
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  border: #cccee2 solid 1px;
}

.custom_dropdown::before {
  content: "";
  width: 17px;
  height: 11px;
  position: absolute;
  top: -11px;
  right: 10px;
  background: url(../images/arrow-img.png) no-repeat;
}

ul.custom_dropdown li {
  padding: 3px 15px;
  display: block;
  text-align: right;
}

ul.custom_dropdown li a {
  font-size: 14px;
}

.custom_modal .modal-body {
  position: relative;
}

.custom_modal .modal-body .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
}

.custom_modal .modal-body h2 {
  color: #1f2a3d;
  font-size: 24px;
}

.custom_modal .modal-body p {
  color: #6d7584;
  font-size: 14px;
}

.custom-card-block {
  background: #ffffff;
  padding: 35px;
  text-align: center;
  box-shadow: 4px 4px 20px rgba(83, 91, 255, 0.2);
  border-radius: 5px;
}

.sidebar {
  width: 250px;
  background-color: #fff;
  border-right: #cccee2 solid 1px;
  padding: 32px 12px;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  display: block;
}

/* .sidebar .sidebar_logo {
  margin-bottom: 25px;
  text-align: center;
} */
/* .sidebar ul { margin: 0px; padding: 0px;}
.sidebar ul li { list-style: none;}
.sidebar ul li a.active { color: #ffff; font-size: 14px; display: flex; align-items: center; padding: 15px 10px;background-color: #535BFF;} */

#sidebar .accordion-button::after {
  display: none;
  background-image: url(../images/arrow_forward_ios.svg);
  background-repeat: no-repeat;
  transform: rotate(0deg);
  width: 10px;
  height: 10px;
  background-size: 100%;
}

/* .nav-acordian .accordion-item {
  border: 0px;
}
.nav-acordian .accordion-button {
  padding: 0.6rem 0.5rem;
  color: #6d7584;
  font-size: 14px;
  font-weight: 400;
} */
/* .nav-acordian .accordion-button:not(.collapsed) {
  background-color: #535bff;
  color: #fff;
  border-radius: 5px;
} */
/* .nav-acordian .accordion-button svg {
  fill: #6d7584;
} */
/* .nav-acordian .accordion-button:not(.collapsed) svg {
  fill: #fff;
}
.nav-acordian .accordion-button span.arrow {
  margin-left: auto;
}
.nav-acordian .accordion-button span.arrow svg {
  fill: #6d7584;
}
.nav-acordian .accordion-button:not(.collapsed) span.arrow svg {
  fill: #fff;
  transform: rotate(90deg);
}
.nav-acordian .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.nav-acordian .accordion-button:hover {
  background-color: #f5f6fa;
}
.nav-acordian .accordion-button:not(.collapsed):hover {
  color: #fff;
  box-shadow: none;
  background-color: #535bff;
}
.nav-acordian .accordion-button:not(.collapsed):hover svg {
  fill: #fff;
}
.nav-acordian .accordion-body ul {
  margin: 15px 0px 0px 12px;
  padding: 0px;
}
.nav-acordian .accordion-body ul li {
  list-style: none;
  margin: 0px 0px 10px;
}
/* .nav-acordian .accordion-body ul li a {
  color: #6d7584;
  font-size: 14px;
} */
/* .nav-acordian .accordion-body ul li a:hover {
  color: #535bff;
  text-decoration: none;
}
.nav-acordian .accordion-body > ul > li > a.active {
  color: #535bff;
  font-weight: 700;
}
.nav-acordian .accordion-body > ul > li:last-child {
  margin-bottom: 0px;
} */
.main-content-section {
  margin-left: 250px;
}

.searchbarbox input[type="search"] {
  width: 100%;
  height: 44px;
  padding: 0 34px 0px 20px;
  font-weight: 400;
  color: #1f2a3d;
}

.searchbarbox {
  position: relative;
  width: 405px;
  display: flex !important;
  gap: 10px;
}

.searchbarbox button {
  position: absolute;
  right: 5px;
  top: 0;
  height: 100%;
  background-color: transparent;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.userimg {
  border-radius: 50px;
  overflow: hidden;
}

ul.custom_navbar_bar {
  display: flex;
  align-items: center;
  flex-direction: row;
}

ul.custom_navbar_bar.navbar-nav .nav-link {
  padding-right: 0.4rem;
  padding-left: 0.4rem;
}

.budges {
  width: 10px;
  height: 10px;
  background-color: red;
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 50px;
}

.nav-acordian {
  height: calc(100vh - 105px);
  overflow: auto;
  padding-right: 5px;
}

.fs-14 {
  font-size: 14px;
}

.nav-acordian::-webkit-scrollbar {
  width: 6px;
}

.info_icon {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-acordian::-webkit-scrollbar-thumb {
  background-color: #888888;
  border-radius: 10px;
}

.nav-acordian::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

.nav-acordian .accordion-body {
  padding: 0rem 1.25rem;
}

.custom-nav-tabs {
  /*
  margin-left: -24px;
  padding-left: 36px;
  margin-right: -24px;
  padding-right: 36px;
  */
  margin-left: 0px;
  margin-right: 0px;
  font-size: 14px;
}

.nav-tabs.custom-nav-tabs .nav-link.active,
.nav-tabs.custom-nav-tabs .nav-item.show .nav-link {
  color: #535bff;
  background-color: transparent;
  border-color: transparent;
  font-size: 14px;
  font-weight: 700;
}

.pagination {
  justify-content: center;
}

.nav-tabs.custom-nav-tabs .nav-link {
  padding: 0px;
  margin: 15px;
  display: block;
}

.nav-tabs.custom-nav-tabs .nav-link::before {
  content: "";
  transition: all 0.2s;
  width: 0px;
  height: 5px;
  background-color: #535bff;
  border-radius: 50px;
  position: absolute;
  bottom: -3px;
}

.nav-tabs.custom-nav-tabs .nav-link.active::before {
  width: 100%;
}

.nav-tabs.custom-nav-tabs .nav-link {
  margin-bottom: 0px;
  padding-bottom: 10px;
  background: none;
  position: relative;
  color: #6d7584;
  font-weight: 400;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* .table-responsive {
  margin-left: -24px;
  margin-right: -24px;
} */
table.custom-table-new thead tr th:first-child,
table.custom-table-new tbody tr td:first-child {
  padding-left: 24px;
}

table.custom-table-new thead tr th {
  border-bottom: #cccee2 solid 1px;
  border-top: #cccee2 solid 1px;
}

table.custom-table-new thead tr th,
table.custom-table-new tbody tr td {
  padding: 10px 5px;
}

table.custom-table-new tbody {
  border-bottom: #cccee2 solid 1px;
}

.bg-success {
  background-color: #00ac97 !important;
}

.bg-secondary {
  background-color: #a3aabe !important;
}

.show-result {
  color: #6d7584;
  font-size: 14px;
}

.badge {
  display: inline-block;
  padding: 0.55em 1em;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: normal;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.blue-bg-color {
  background-color: #535bff;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
}

select[data-multi-select-plugin] {
  display: none !important;
}

.multi-select-component {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  width: 100%;
  padding: 0.475rem 2.25rem 0.175rem 0.75rem;
  font-size: 0.875rem;

  color: #a3aabe;
  background-color: #fff;
  border: 1px solid #cccee2;
  border-radius: 0.25rem;
}

.autocomplete-list {
  border-radius: 4px 0px 0px 4px;
}

.multi-select-component:focus-within {
  box-shadow: inset 0px 0px 0px 2px #78abfe;
}

.multi-select-component .btn-group {
  display: none !important;
}

.multiselect-native-select .multiselect-container {
  width: 100%;
}

.selected-wrapper {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;

  background-color: #eaebf5;
  white-space: nowrap;
  margin: 1px 5px 5px 0;
  height: 22px;
  color: #6d7584;
  vertical-align: top;
  cursor: default;
}

.selected-wrapper .selected-label {
  max-width: 514px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 4px;
  vertical-align: top;
}

.selected-wrapper .selected-close {
  display: inline-block;
  text-decoration: none;
  font-size: 0px;
  width: 12px;
  line-height: 1.49em;
  margin-left: 5px;
  padding-bottom: 10px;
  height: 100%;
  vertical-align: top;
  padding-right: 4px;
  background: url(../images/close_small.png) no-repeat center center;

  font-weight: 700;
}

.search-container {
  display: flex;
  flex-direction: row;
}

.search-container .selected-input {
  background: none;
  border: 0;
  height: 20px;
  width: 60px;
  padding: 0;
  margin-bottom: 6px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.search-container .selected-input:focus {
  outline: none;
}

.dropdown-icon.active {
  transform: rotateX(180deg);
}

.search-container .dropdown-icon {
  display: inline-block;
  padding: 10px 5px;
  position: absolute;
  top: 10px;
  right: 11px;
  width: 10px;
  height: 10px;
  border: 0 !important;
  /* needed */
  -webkit-appearance: none;
  background-size: 16px 12px;
  -moz-appearance: none;
  /* SVG background image */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23A3AABE' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-position: center;

  background-repeat: no-repeat;
}

.search-container ul {
  position: absolute;
  list-style: none;
  padding: 0;
  z-index: 3;
  margin-top: 33px;
  width: 100%;
  right: 0px;
  background: #fff;

  border-top: none;
  border-bottom: none;
}

.search-container ul :focus {
  outline: none;
}

.search-container ul li {
  display: block;
  text-align: left;
  padding: 8px 29px 2px 12px;

  font-size: 14px;
  min-height: 31px;
}

.search-container ul li:hover.not-cursor {
  cursor: default;
}

.search-container ul li:hover {
  color: #333;
  background-color: rgb(235, 235, 235);
  border-color: #adadad;
  cursor: pointer;
}

/* Adding scrool to select options */
.autocomplete-list {
  max-height: 130px;
  overflow-y: auto;
}

.custom_modal .modal-header,
.custom_modal .modal-footer {
  border-top: 0px;
  border-bottom: 0px;
}

.heading-3 {
  color: #00ac97;
  font-size: 16px;
  font-weight: 700;
}

.custom_modal-2 .modal-footer {
  justify-content: flex-start;
}

.fs-14 {
  font-size: 14px;
}

.toggle-btn {
  background-color: #fff;
  border: #cccee2 solid 1px;
  border-radius: 5px;
  padding: 10px;
}

.toggle-btn .form-check-input {
  height: 24px;
  width: 48px;
  margin-top: 0.05em;
}

.toggle-btn .form-check-input:checked {
  background-color: #535bff;
  border-color: #535bff;
}

.toggle-btn .form-check-label {
  color: #6d7584;
  font-size: 14px;
}

.toggle-btn .form-switch {
  padding-left: 3.5em;
}

.toggle-btn .form-switch .form-check-input {
  margin-left: -3.5em;
}

.custom-progress {
  height: 8px;
  background-color: #eeecff;
}

.form-control::placeholder {
  color: #a3aabe;
  opacity: 1;
  /* Firefox */
}

.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #a3aabe;
}

.form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #a3aabe;
}

.custom-progress .progress-bar {
  background-color: #c20003;
  border-radius: 50px;
}

.text-red {
  color: #c20003;
  font-size: 14px;
}

.text1 {
  font-size: 14px;
  color: #a3aabe;
  line-height: normal;
}

.text-2 {
  font-size: 14px;
  color: #6d7584;
  line-height: normal;
}

#file-drag {
  border: 1px dashed #a3aabe;
  border-radius: 7px;
  color: #1f2a3d;
  cursor: pointer;
  display: block;
  font-weight: bold;
  margin: 1em 0 0px;
  padding: 1.5em;
  text-align: center;
  background-color: #ffff;
  transition: background 0.3s, color 0.3s;
}

#file-drag h3 {
  margin-bottom: 05px;
  color: #1f2a3d;
  font-size: 20px;
  margin-top: 5px;
}

#file-drag p {
  color: #6d7584;
  font-size: 16px;
  font-weight: 400;
}

#file-progress {
  display: none;
  margin: 1em auto;
  width: 100%;
}

#file-upload-btn:hover {
  background: #4499c9;
}

progress {
  appearance: none;
  background: #eee;
  border: none;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
  height: 30px;
}

input[type="file"] {
  display: none;
}

progress[value]::-webkit-progress-value {
  background: -webkit-linear-gradient(-45deg,
      transparent 33%,
      rgba(0, 0, 0, 0.2) 33%,
      rgba(0, 0, 0, 0.2) 66%,
      transparent 66%),
    -webkit-linear-gradient(right, #005f95, #07294d);
  background: linear-gradient(-45deg,
      transparent 33%,
      rgba(0, 0, 0, 0.2) 33%,
      rgba(0, 0, 0, 0.2) 66%,
      transparent 66%),
    linear-gradient(right, #005f95, #07294d);
  background-size: 60px 30px, 100% 100%, 100% 100%;
  border-radius: 3px;
}

progress[value]::-moz-progress-bar {
  background: -moz-linear-gradient(-45deg,
      transparent 33%,
      rgba(0, 0, 0, 0.2) 33%,
      rgba(0, 0, 0, 0.2) 66%,
      transparent 66%),
    -moz-linear-gradient(right, #005f95, #07294d);
  background: linear-gradient(-45deg,
      transparent 33%,
      rgba(0, 0, 0, 0.2) 33%,
      rgba(0, 0, 0, 0.2) 66%,
      transparent 66%),
    linear-gradient(right, #005f95, #07294d);
  background-size: 60px 30px, 100% 100%, 100% 100%;
  border-radius: 3px;
}

.colendar-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.color-picker {
  width: 34px;
  height: 30px;
  display: block;
  padding: 0px;
  border: 0px;
  border-radius: 3px;
}

.toggle-btn-arrow {
  padding-right: 26px !important;
  position: relative;
}

.toggle-btn-arrow::before {
  content: "";
  width: 8px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url(../images/chevron_backward.png) no-repeat;
}

.custom-date-dropdown-menu {
  padding: 15px;
  margin-top: 15px;
  top: 5px !important;
  width: 300px !important;
  border: 1px solid #cccee2;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.expire-soon td {
  --bs-table-accent-bg: #fffde5;
}

.expire td {
  --bs-table-accent-bg: #ffe5e6;
}

.file-input__input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-input__label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #535bff;
  font-size: 14px;
  padding: 10px 20px;
  background-color: #f5f6fa;
}

.form-check-input:checked {
  background-color: var(--theme-purple);
  border-color: var(--theme-purple);
}

@media (max-width: 1230.5px) {
  .search_box-width_290 {
    position: relative;
    width: 290px;
  }
}

@media (max-width: 1199.5px) {
  .searchbarbox {
    position: relative;
    width: 240px;
    display: flex;
    gap: 10px;
  }

  .px-6 {
    padding-right: var(--bs-gutter-x, 1.75rem) !important;
    padding-left: var(--bs-gutter-x, 1.75rem) !important;
  }
}

@media (max-width: 992.5px) {
  .sidebar {
    margin-left: -250px;
    z-index: 9999;
  }

  .main-content-section {
    margin-left: 0px;
  }

  .sidebar.active {
    margin-left: 0px;
  }

  #nav-icon3 {
    width: 30px;
    height: 15px;
    position: relative;

    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }

  #nav-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #313131;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  /* Icon 3 */

  #nav-icon3 span:nth-child(1) {
    top: 0px;
  }

  #nav-icon3 span:nth-child(2),
  #nav-icon3 span:nth-child(3) {
    top: 10px;
  }

  #nav-icon3 span:nth-child(4) {
    top: 20px;
  }

  #nav-icon3.open span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
  }

  #nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #nav-icon3.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
  }

  .sidebar_toggle {
    display: block;
  }
}

@media (max-width: 767.5px) {
  .search_box {
    width: 100%;
  }

  .table> :not(caption)>*>* {
    padding: 0.5rem 0.5rem;
  }
}

@media (max-width: 576px) {
  .w-sm-100 {
    width: 100%;
  }

  .searchbarbox {
    width: 100%;
    display: flex;
    gap: 10px;
  }

  .info_icon img {
    width: 15px;
  }

  .info_icon {
    right: -17px;
  }

  .px-6 {
    padding-right: var(--bs-gutter-x, 0.75rem) !important;
    padding-left: var(--bs-gutter-x, 0.75rem) !important;
  }

  .navbar-brand svg {
    width: 150px;
  }

  .search_box {
    width: 100%;
  }

  .login_card {
    max-width: 400px;
    padding: 60px 30px;
  }

  h3 {
    font-size: 1.25rem;
  }

  .form-label,
  .forgot_password {
    font-size: 12px;
  }
}

.white-bg{
    height: 100vh;
}

@media (max-width: 421px) {
  .login_card {
    max-width: 90%;
    padding: 60px 30px;
  }
}

.whitebg-section {
  width: 250px;
  padding: 32px 24px;
  /* height: 100vh; */
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.12);
}

.section-right-whitebg-section {
  width: calc(100% - 263px);
}

.whitebg-section ul {
  margin: 0px -10px 0px -10px;
  padding: 0px;
}

.whitebg-section ul li {
  list-style: none;
  margin-bottom: 2px;
  margin-top: 2px;
}

.whitebg-section ul li a {
  color: #6d7584;
  font-size: 14px;
  border-radius: 5px;
  display: block;
  padding: 8px 12px;
}

.whitebg-section ul li a.active,
.whitebg-section ul li a.active:hover {
  background-color: #eeecff;
  border-radius: 5px;
  color: #535bff;
  font-size: 14px;
  font-weight: bold;
}

.whitebg-section ul li a:hover {
  background-color: #F5F6FA;
}

@media (max-width: 992.5px) {
  .whitebg-section {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767.5px) {
  .whitebg-section {
    width: 100%;
    height: auto;
  }

  .section-right-whitebg-section {
    width: 100%;
  }
}

/*
.custom-nav-tabs {
  margin-left: -24px;
  padding-left: 10px;
  margin-right: -24px;
  padding-right: 10px;
} */
/* .nav-tabs.custom-nav-tabs .nav-link.active,
.nav-tabs.custom-nav-tabs .nav-item.show .nav-link {
  color: #535bff;
  background-color: transparent;
  border-color: transparent;
  font-size: 14px;
  font-weight: 700;
}
.nav-tabs.custom-nav-tabs .nav-link {
  padding: 0px;
  margin: 15px;
  display: block;
}
.nav-tabs.custom-nav-tabs .nav-link::before {
  content: "";
  transition: all 0.2s;
  width: 0px;
  height: 5px;
  background-color: #535bff;
  border-radius: 50px;
  position: absolute;
  bottom: 0px;
}
.nav-tabs.custom-nav-tabs .nav-link.active::before {
  width: 100%;
}
.nav-tabs.custom-nav-tabs .nav-link {
  margin-bottom: 0px;
  padding-bottom: 15px;
  background: none;
  position: relative;
  color: #6d7584;
  font-weight: 400;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
} */

.details-section h3 {
  font-size: 20px;
}

.details-section h5 {
  font-size: 14px;
  font-weight: bold;
  color: #1f2a3d;
}

.details-section textarea {
  resize: none;
}

.error-message {
  border: #efaf00 solid 1px;
  font-size: 14px;
  display: inline-block;
  background-color: #fff3cd;
  color: #6d7584;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 10px;
}

@media (max-width: 421px) {
  .error-message {
    padding: 10px;
  }
}

.titile-section h3 {
  color: #535bff;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0px;
  margin-top: 0px;
}

ul.list-icon-block {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
}

ul.list-icon-block li {
  list-style: none;
  margin: 0px 5px;
}

ul.list-icon-block li a {
  display: block;
}

.details-section h3 {
  font-size: 20px;
}

.details-section h5 {
  font-size: 14px;
  font-weight: bold;
  color: #1f2a3d;
}

.details-section textarea {
  resize: none;
}

.cust-card-block {
  border: #cccee2 solid 1px;
  border-radius: 5px;
}

.cust-card-block h3 {
  color: #1f2a3d;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.cust-card-block p {
  font-size: 14px;
  font-weight: 400;
  color: #6d7584;
  margin-bottom: 8px;
}

.cust-card-block h4 {
  color: #1f2a3d;
  font-size: 20px;
  font-weight: 400;
}

.cust-card-block ul {
  margin: 0px;
  padding: 0px;
}

.cust-card-block ul li {
  position: relative;
  list-style: none;
  padding-left: 25px;
  margin-bottom: 4px;
}

.cust-card-block ul li::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-top: 2px;
  position: absolute;
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
  background: url(../images/check_small.png) no-repeat;
}

.cust-card-block ul li a {
  color: #6d7584;
  font-size: 14px;
  list-style: none;
}

.main-content-wrapper {
  padding-left: 250px !important;
}

/* Roles & Permissions Styles */
.search-input-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.search-input {
  background: #ffffff;
  border: 1px solid #cccee2;
  border-radius: 5px;
  padding: 12px 16px 12px 40px;
  font-size: 14px;
  color: #6d7584;
  box-shadow: none;
}

.search-input:focus {
  border-color: #535bff;
  box-shadow: 0 0 0 0.2rem rgba(83, 91, 255, 0.1);
  outline: none;
}

.search-input::placeholder {
  color: #a3aabe;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #a3aabe;
  font-size: 14px;
}

.roles-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.role-card {
  background: #ffffff;
  border: 1px solid #cccee2;
  border-radius: 5px;
  cursor: grab;
  transition: all 0.2s ease;
}

.role-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: #535bff;
}

.role-card:active {
  cursor: grabbing;
}

.role-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  height: 48px;
}

.role-name {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6d7584;
  display: flex;
  align-items: center;
  gap: 8px;
}

.default-badge {
  font-size: 12px;
  color: #a3aabe;
}

.role-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-count {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #a3aabe;
  font-size: 14px;
}

.user-icon {
  width: 16px;
  height: 16px;
  color: #a3aabe;
  font-size: 14px;
}

.more-actions-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d7584;
  transition: background-color 0.2s ease;
}

.more-actions-btn:hover {
  background-color: #f5f6fa;
}

.more-actions-btn i {
  width: 20px;
  height: 20px;
  font-size: 16px;
}

.dropdown-menu {
  border: 1px solid #cccee2;
  border-radius: 5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 129px;
  margin-left: -91px;
}

.dropdown-item {
  padding: 8px 16px;
  font-size: 14px;
  color: #535bff;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: right;
}

.dropdown-item:hover {
  background-color: #f5f6fa;
  color: #535bff;
}

.dropdown-item.text-danger {
  color: #535BFF !important;
}

.dropdown-item.text-danger:hover {
  color: #535BFF !important;
  background-color: #fef2f2;
}

.add-role-section {
  margin-bottom: 32px;
}

.add-role-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #535bff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.add-role-btn:hover {
  color: #535bff;
  opacity: 0.8;
}

.add-role-btn i {
  width: 16px;
  height: 16px;
  font-size: 14px;
}

.action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #cccee2;
}

.btn-primary {
  background-color: #535bff;
  border-color: #535bff;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 24px;
  border-radius: 5px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #4147cc;
  border-color: #4147cc;
}

.btn-outline-secondary {
  border-color: #cccee2;
  color: #6d7584;
  font-size: 14px;
  padding: 12px 17px;
  border-radius: 5px;
  font-weight: 500;
  background-color: #ffffff;
}

.btn-outline-secondary:hover {
  background-color: #f5f6fa;
  border-color: #cccee2;
  color: #6d7584;
}

/* Mobile responsiveness for roles & permissions */
@media (max-width: 767.98px) {
  .search-input-container {
    max-width: 100%;
  }

  .role-content {
    padding: 12px;
    flex-direction: column;
    height: auto;
    gap: 12px;
    align-items: flex-start;
  }

  .role-actions {
    align-self: stretch;
    justify-content: space-between;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-buttons button {
    width: 100%;
  }
}

.chevron-icon {
  transition: transform 0.3s ease;
  /* Smooth transition */
}

[aria-expanded="true"] .chevron-icon {
  transform: rotate(90deg);
  /* Rotate 90 degrees */
}

.dropdown-toggle {
  border: 0;
}

.dropdown-toggle::after {
  display: none;
}

.membership-block {
  color: white;
  font-size: 14px;
}

.membership-container {
  border-radius: 5px;
  background-color: var(--bs-teal);
  padding: 7px;
  position: absolute;
  top: 20px;
  right: 12px;
}
