@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
  --cs-green: #00a084;
  --cs-skyblue: #00aeef;
  --cs-yellow: #ffc40c;
  --cs-red: #dd1e47;
  --cs-grey: #cccccc;
  --cs-teal: #00a084;
  --cs-performer: #ffc40c;
  --cs-front_runner: #00a084;
  --cs-achiever: #00aeef;
  --cs-aspirant: #dd1e47;
  --cs-no_data: #cccccc;

  /* Goals Color */
  --g1: #e5233d;
  --g2: #dda73a;
  --g3: #59ba47;
  --g4: #c7212f;
  --g5: #ee402d;
  --g6: #28bfe6;
  --g7: #fbc412;
  --g8: #a31d44;
  --g9: #f26a2e;
  --g10: #df1a83;
  --g11: #f99d2a;
  --g12: #bf8d2c;
  --g13: #3f7e45;
  --g14: #1f97d4;
  --g15: #59ba47;
  --g16: #136a9f;
  --g17: #1a3668;
  /* /Goals Color */
}

.text-green {
  color: var(--cs-green);
}

.text-skyBlue {
  color: var(--cs-skyblue);
}

.text-yellow {
  color: var(--cs-yellow);
}

.text-red {
  color: var(--cs-red);
}

.text-grey {
  color: var(--cs-grey);
}

.colored-strips {
  background-image: url("../images/strip-lines.png");
  background-repeat: repeat-x;
  padding: 2px;
}

#blur.active{
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}

.highcharts-credits {
  display: none !important;
}

.custom-tooltip {
  position: relative;
  display: inline;
}
.custom-tooltip:not(:hover) .custom-tooltip-content {
  display: none;
}
.custom-tooltip .custom-tooltip-content {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 5px;
  padding: 5px;
  font-size: 12px;
  width: 200px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}
.custom-tooltip .custom-tooltip-content::after {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  border: 5px solid #fff;
  border-color: transparent #fff transparent transparent;
}

.highcharts-data-table table {
  width: 100%;
}
.highcharts-data-table table thead tr th {
  color: #fff !important;
  background-color: #000;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding: 0 4px;
}
.highcharts-data-table table tbody tr th,
.highcharts-data-table table tbody tr td {
  padding: 2 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

[data-icon-toggle-title] {
  position: relative;
}
[data-icon-toggle-title]:not(:hover)::before, [data-icon-toggle-title]:not(:hover)::after {
  display: none;
}
[data-icon-toggle-title]::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 9;
  border: 3.5px solid #fff;
  border-color: #fff transparent transparent transparent;
}
[data-icon-toggle-title]::before {
  content: attr(data-icon-toggle-title);
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  z-index: 9;
  color: #000;
  background-color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

.cs-icons-wrapper {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.cs-icon:not(:last-child) {
  margin-right: 4px;
}
.cs-icon:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cs-icon-approve {
  background-color: #fdc010;
  color: #fff;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in-out;
  border: none;
}
.cs-icon-approve:hover {
  color: #fff;
  background-color: #f6bd14;
}

.cs-icon-disapprove {
  background-color: #e5233d;
  color: #fff;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in-out;
  border: none;
  font-size: 20px;
}
.cs-icon-disapprove:hover {
  color: #fff;
  background-color: #d8243c;
}

.cs-icon-edit {
  background-color: #fdc010;
  color: #fff;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in-out;
  border: none;
}
.cs-icon-edit:hover {
  color: #fff;
  background-color: #f6bd14;
}

.cs-icon-save {
  background-color: #009900;
  color: #fff;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in-out;
  border: none;
}
.cs-icon-save:hover {
  background-color: #058a05;
  color: #fff;
}

.cs-icon-delete,
.cs-icon-discontinue {
  background-color: #e5233d;
  color: #fff;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in-out;
}
.cs-icon-delete:hover,
.cs-icon-discontinue:hover {
  background-color: #d8243c;
  color: #fff;
}

.cs-icon-active {
  background-color: #009900;
  color: #fff;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in-out;
}
.cs-icon-active:hover {
  background-color: #058a05;
  color: #fff;
}

.cs-icon-admin {
  color: #000;
  font-size: 20px;
}
.cs-icon-admin:hover {
  color: #000;
}

.page-content {
  min-height: calc(100vh - 107px);
}

.cs-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.cs-card-header .card-header-action {
  margin-left: 20px;
}
.cs-card-header .card-header-action .btn:not(:first-child) {
  margin-left: 10px;
}
@media (max-width: 565px) {
  .cs-card-header .card-header-action .btn {
    margin-bottom: 5px;
  }
}
@media (max-width: 400px) {
  .cs-card-header .card-header-action .btn {
    margin-left: 0 !important;
  }
}
@media (max-width: 565px) {
  .cs-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cs-card-header .page-title {
    margin-bottom: 15px;
  }
  .cs-card-header .card-header-action {
    margin-left: 0;
  }
}

.switch-to-graph-wrapper {
  margin-bottom: 20px;
  margin-left: auto;
}

.goals-drawer-wrapper .goals-show-action {
  position: fixed;
  top: 80px;
  right: 0;
  z-index: 9;
  background-color: #fff;
  border-width: 2px 0 2px 4px;
  border-radius: 5px 0 0 5px;
  border-style: solid;
  border-color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 2px;
}
.goals-drawer-wrapper .goals-show-action img {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.goals-drawer-wrapper .goals-show-action h4 {
  font-size: 10px;
  font-weight: 800;
  color: var(--bs-primary);
}
.goals-drawer-wrapper:not(.show-drawer) .goals-drawer {
  display: none;
}
.goals-drawer-wrapper.show-drawer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.goals-drawer-wrapper.show-drawer .goals-show-action {
  display: none;
}
.goals-drawer-wrapper.show-drawer .page-content {
  width: calc(100% - 70px);
  margin-right: auto;
}
.goals-drawer-wrapper.show-drawer .goals-drawer {
  width: 70px;
  background-color: #fff;
  animation: swipe_from_right 0.25s ease-in-out;
  position: fixed;
  top: 66px;
}
@keyframes swipe_from_right {
  0% {
    width: 0px;
  }
  100% {
    width: 70px;
  }
}
.goals-drawer-wrapper.show-drawer .goals-drawer .goals-drawer-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  border-bottom: 1px solid #e2e2e2;
}
.goals-drawer-wrapper.show-drawer .goals-drawer .goals-drawer-header .btn {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  z-index: 9;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.goals-drawer-wrapper.show-drawer .goals-drawer .goals-drawer-header img {
  display: block;
  width: 25px;
  margin-right: 6px;
}
.goals-drawer-wrapper.show-drawer .goals-drawer .goals-drawer-header h5 {
  font-size: 12px;
  font-weight: 600;
}
.goals-drawer-wrapper.show-drawer .goals-drawer .goals-drawer-content {
  padding: 10px 8px;
  margin-right: 1px;
  height: calc(100vh - 120px);
  transition: height 0.3s ease-in-out;
  overflow: auto;
}
.goals-drawer-wrapper.show-drawer .goals-drawer .goals-drawer-content a {
  display: block;
  margin-bottom: 10px;
  opacity: 0.5;
  transition: all 0.25s ease-in-out;
}
.goals-drawer-wrapper.show-drawer .goals-drawer .goals-drawer-content a:hover, .goals-drawer-wrapper.show-drawer .goals-drawer .goals-drawer-content a.active {
  opacity: 1;
  transform: scale(1.05);
}
.goals-drawer-wrapper.show-drawer .goals-drawer .goals-drawer-content a img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.user-icon {
  position: relative;
}
.user-icon.hide-user {
  visibility: hidden;
  pointer-events: none;
}
.user-icon:not(:hover) .user-icon__tooltip {
  display: none;
}
.user-icon .user-icon__tooltip {
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  z-index: 9;
  border-radius: 5px;
  padding: 2.5px 5px;
  background-color: #fff;
  width: 600px;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 10px;
  font-weight: 500;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.user-icon .user-icon__tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
  width: 6px;
  height: 6px;
  border: 6px solid;
  border-color: transparent transparent transparent #fff;
}
.user-icon .user-icon__tooltip .user-reporter {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.user-icon .user-icon__tooltip .user-reporter .icon-area {
  background-color: #ffe392;
  font-size: 12px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.user-icon .user-icon__tooltip .user-approver .icon-area {
  border-radius: 50%;
  background-color: #d9ffd9;
  font-size: 12px;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cs-header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
}
.cs-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: auto;
  padding: 0px 20px;
}
.cs-header .header-content .header-left {
  display: flex;
}
.cs-header .header-content .header-left .header-text-logo {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 700;
}
.cs-header .header-content .header-left .header-text-logo .top-title {
  font-size: 20px;
}
.cs-header .header-content .header-left .header-text-logo .bottom-title {
  font-size: 18px;
}
.cs-header .header-content .header-left .header-left__logo {
  display: block;
  margin-right: 15px;
}
.cs-header .header-content .header-left .header-left__logo img {
  display: block;
  width: 60px;
  height: auto;
}
.cs-header .header-content .header-left .titled-logo {
  max-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs-header .header-content .header-left .titled-logo h2 {
  font-size: 20px;
  font-weight: 700;
  color: #00437c;
}
.cs-header .header-content .header-left .titled-logo p {
  font-size: 14px;
  color: #000;
  margin-bottom: 0;
}
.cs-header .header-content .header-niti-logo {
  margin-left: 20px;
  margin-right: 20px;
  display: block;
}
.cs-header .header-content .header-emblem-logo {
  margin-left: 0px;
  margin-right: 0px;
  display: block;
}
.cs-header .header-content .header-niti-logo img {
  display: block;
  width: 70px;
  height: 70px;
}
.cs-header .header-content .header-emblem-logo img {
  display: block;
  width: 70px;
  height: 70px;
}
.cs-header .header-content .header-satyamev__logo {
  display: block;
  margin: 0 10px;
}
.cs-header .header-content .header-satyamev__logo img {
  display: block;
  width: 50px;
  height: auto;
}
.cs-header .header-content .header-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cs-header .header-content .header-right .header-undp-logo {
  display: block;
}
.cs-header .header-content .header-right .header-undp-logo img {
  display: block;
  width: 25px;
  height: auto;
}
.cs-header .header-content .header-right .toggle-sidenav-btn {
  height: 72px;
  margin-left: 10px;
  margin-right: -19px;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e0f1ff;
  color: #000;
  padding: 0 5px;
}

#sidebarMenu .modal-dialog {
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  height: 100vh;
  width: 320px;
  border-radius: 0px;
  animation: slideInFromRight 0.5s forwards;
}
#sidebarMenu .modal-dialog .modal-content {
  height: 100%;
  border-radius: 0px !important;
  border: none !important;
}
#sidebarMenu .modal-dialog .modal-content .modal-header {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
}
#sidebarMenu .modal-dialog .modal-content .modal-header .btn-close {
  margin-right: 0;
  margin-left: 0;
}

.sidebar-nav-wrapper .sidebar-nav__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-nav-wrapper .sidebar-nav__body ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.sidebar-nav-wrapper .sidebar-nav__body ul li a {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 10px;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
  border-radius: 2px;
}
.sidebar-nav-wrapper .sidebar-nav__body ul li a.active, .sidebar-nav-wrapper .sidebar-nav__body ul li a:hover {
  background-color: #00427c;
  color: #fff;
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.logo-normal.sdg-main-logo {
  width: 100%;
  max-width: 40px;
}
.logo-normal.sdg-main-logo img {
  display: block;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 380px) {
  .logo-normal.sdg-main-logo {
    max-width: 20px;
  }
}

.sidebar-mini .navbar-brand {
  flex-wrap: wrap;
}

.form-group.cs-form-group .form-label {
  color: #000;
}
.form-group.cs-form-group .form-label em {
  color: var(--bs-danger);
}
.form-group.cs-form-group.helper-txt .form-label {
  margin-bottom: 0;
}
.form-group.cs-form-group.helper-txt small {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}
.form-group.cs-form-group .form-control {
  color: #000;
}
.form-group.cs-form-group .form-control:not(:focus) {
  border: 1.35px solid rgba(37, 37, 37, 0.2509803922);
}
.form-group.cs-form-group .form-select {
  color: #000;
  border-radius: 0.25rem;
}
.form-group.cs-form-group .form-select:not(:focus) {
  border: 1.35px solid rgba(37, 37, 37, 0.2509803922);
}
.form-group.cs-form-group .form-check-wrapper {
  display: flex;
}
.form-group.cs-form-group .form-check-wrapper .form-check {
  margin-right: 20px;
  cursor: pointer;
}
.form-group.cs-form-group .form-check-wrapper .form-check * {
  cursor: pointer;
}
.form-group.cs-form-group .form-check-wrapper .form-check .form-check-label {
  color: #000;
}
.form-group.cs-form-group .form-check-wrapper .form-check .form-check-label em {
  color: var(--bs-danger);
}

.logo-title.sdg-main-logo-title {
  font-weight: 700;
  color: var(--bs-primary) !important;
  margin-left: 6px !important;
}
.logo-title.sdg-main-logo-title .logo-title__sm {
  font-size: 16px;
}
.logo-title.sdg-main-logo-title .logo-title__md {
  font-size: 18px;
}
@media (max-width: 380px) {
  .logo-title.sdg-main-logo-title .logo-title__sm {
    font-size: 10px;
  }
  .logo-title.sdg-main-logo-title .logo-title__md {
    font-size: 12px;
  }
}

.nav.navbar {
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.0509803922);
  position: sticky;
  top: 0;
  z-index: 99;
}

.page-content {
  padding: 20px;
}

.table-tabs-wrapper .table-tab__nav {
  white-space: nowrap;
  overflow: auto;
  padding-bottom: 15px;
}
.table-tabs-wrapper .table-tab__nav .btn {
  background-color: #f2f2f2;
  color: #000;
  margin-right: 6px;
}
.table-tabs-wrapper .table-tab__nav .btn.active {
  background-color: #277dff;
  color: #fff;
}
.table-tabs-wrapper .table-tab__item {
  animation: table_tab_fade_out 0.3s ease-in-out;
}
.table-tabs-wrapper .table-tab__item:not(.active) {
  display: none;
}
@keyframes table_tab_fade_out {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.graph-filters-strip {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.graph-filters-strip .filters-area {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 5px;
}
.graph-filters-strip .filters-area .form-group {
  width: 20%;
}
.graph-filters-strip .filters-area .form-group input.form-control-sm {
  height: 30.6px;
  min-height: 30.6px;
}
.graph-filters-strip .filters-area .form-group label {
  display: block;
}
.graph-filters-strip .filters-area .form-group select {
  color: #6a6a6a !important;
}
.graph-filters-strip .filters-area .form-group .select2.select2-container {
  width: 100% !important;
}
.graph-filters-strip .filters-area .form-group.form-group-btn {
  padding-top: 30px;
}
.graph-filters-strip .filters-area .form-group.form-group-btn-lg {
  padding-top: 30px;
}
@media (max-width: 992px) {
  .graph-filters-strip .filters-area .form-group.form-group-btn {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .graph-filters-strip .filters-area .form-group.form-group-btn-lg {
    padding-top: 0px;
  }
}
@media (min-width: 767px) {
  .graph-filters-strip .filters-area {
    margin-left: -5px;
    margin-right: -5px;
  }
  .graph-filters-strip .filters-area .form-group {
    padding: 0 5px;
  }
  .graph-filters-strip .filters-area .form-group.filter-form-button {
    padding-top: 30px;
  }
}
.graph-filters-strip .filters-area .cs-form-group .fiter-submit {
  margin-top: 1.9rem !important;
  margin-left: 0.7rem !important;
}
.graph-filters-strip .filters-area .cs-form-group .clear-filter {
  margin-top: 1.9rem !important;
  margin-left: 0.5rem !important;
}
.graph-filters-strip .switch-list-action-area {
  padding-top: 32px;
}
@media (max-width: 992px) {
  .graph-filters-strip {
    flex-direction: column-reverse;
  }
  .graph-filters-strip .switch-list-action-area {
    padding-top: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .graph-filters-strip .switch-list-action-area {
    padding-top: 0;
    margin-bottom: 15px;
  }
  .graph-filters-strip .filters-area .form-group {
    width: 50%;
  }
  .graph-filters-strip .filters-area .form-group .cs-form-group .fiter-submit {
    margin-top: 0.5rem !important;
    margin-left: 0.3rem !important;
  }
  .graph-filters-strip .filters-area .form-group .cs-form-group .clear-filter {
    margin-top: 0.5rem !important;
    margin-left: 0.3rem !important;
  }
}
@media (max-width: 767px) {
  .graph-filters-strip .filters-area .form-group {
    width: 100%;
    margin-right: 0;
  }
}

.graph-card {
  padding: 5px;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 32px;
}
.graph-card .graph-card-header {
  padding: 10px;
}
.graph-card .graph-card-header .graph-card-title {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.graph-card .graph-card-body {
  padding: 10px;
}
.graph-card .graph-card-body .graph-card-body-bottom-text {
  color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.sidebar-list .nav-link[aria-expanded=true] {
  background-color: var(--bs-primary-tint-90) !important;
  color: var(--bs-primary) !important;
  box-shadow: none;
}
.sidebar-list .nav-link[aria-expanded=true].active {
  background-color: var(--bs-primary-tint-90) !important;
  color: var(--bs-primary) !important;
  box-shadow: none;
}
.sidebar-list .nav-link[aria-expanded=false].active.collapsed {
  background-color: var(--bs-primary-tint-90) !important;
  color: var(--bs-primary) !important;
  box-shadow: none;
}

.main-content .iq-navbar {
  min-height: 65.8px;
}

.divisional-cards {
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
}
.divisional-cards .divisional-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 50%);
}
.divisional-cards .divisional-cards-grid .divisional-cards-items:first-child {
  margin-right: 10px;
}
.divisional-cards .divisional-cards-grid .divisional-cards-items:last-child {
  margin-left: 10px;
}

.cs-footer {
  background-color: #00437c;
  color: #fff;
  padding: 10px 20px;
}
.cs-footer .cs-footer-wrapper {
  max-width: var(--max-width);
  margin: auto;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .divisional-cards {
    padding: 12px;
  }
  .divisional-cards .divisional-cards-grid {
    grid-template-columns: 100%;
  }
  .divisional-cards .divisional-cards-grid .divisional-cards-items:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .divisional-cards .divisional-cards-grid .divisional-cards-items:last-child {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .page-content {
    padding: 15px;
  }
  .cs-header .header-content {
    padding: 0 10px;
  }
  .cs-header .header-content .header-left .header-left__logo {
    margin-right: 10px;
  }
  .cs-header .header-content .header-left .header-left__logo img {
    width: 40px;
  }
  .cs-header .header-content .header-left .titled-logo {
    max-width: 150px;
  }
  .cs-header .header-content .header-left .titled-logo h2 {
    font-size: 14px;
  }
  .cs-header .header-content .header-left .titled-logo p {
    font-size: 12px;
  }
  .cs-header .header-content .header-right .header-niti-logo {
    margin-left: 10px;
    margin-right: 10px;
  }
  .cs-header .header-content .header-right .header-niti-logo img {
    width: 50px;
  }
  .cs-header .header-content .header-right .header-undp-logo img {
    width: 30px;
  }
  .cs-header .header-content .header-right .toggle-sidenav-btn {
    height: 75px;
    margin-right: -10px;
  }
}
@media (max-width: 565px) {
  .cs-header .header-content .header-niti-logo {
    margin: 0;
    margin-right: 10px;
  }
  .cs-header .header-content .header-niti-logo img {
    width: 50px;
  }
  .cs-header .header-content .header-left .header-text-logo .top-title {
    font-size: 16px;
  }
  .cs-header .header-content .header-left .header-text-logo .bottom-title {
    font-size: 14px;
  }
  .cs-header .header-content .header-right .header-satyamev__logo {
    margin: 0;
  }
  .cs-header .header-content .header-right .header-satyamev__logo img {
    width: 35px;
  }
}
@media (max-width: 360px) {
  .cs-header .header-content .header-right .header-login-btn {
    display: none;
  }
}
.section-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

.page-content .page-title {
  font-size: 22px;
  font-weight: 500;
}

@media (max-width: 565px) {
  .section-heading {
    font-size: 20px;
  }
}
.scoring-card:not(:hover) .scoring-card__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.8) 98%) !important;
}
.scoring-card:not(:hover) .scoring-card__overlay span.scoring-card__overlay-btn {
  opacity: 0 !important;
}
.scoring-card.mark-aspirant .img-title::before, .scoring-card.mark-performer .img-title::before, .scoring-card.mark-achiever .img-title::before, .scoring-card.mark-front_runner .img-title::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 10%;
  margin-right: 5px;
  transform: translateY(2px);
}
.scoring-card.mark-achiever .img-title::before {
  background-color: var(--cs-skyblue);
}
.scoring-card.mark-front_runner .img-title::before {
  background-color: var(--cs-green);
}
.scoring-card.mark-performer .img-title::before {
  background-color: var(--cs-yellow);
}
.scoring-card.mark-aspirant .img-title::before {
  background-color: var(--cs-red);
}
.scoring-card .img-area {
  position: relative;
  margin-bottom: 0;
}
.scoring-card .img-area img {
  display: block;
  width: 100%;
}
.scoring-card .img-area .img-title {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  color: #fff;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}
.scoring-card .img-area .scoring-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 2.5px;
}
.scoring-card .img-area .scoring-card__overlay:hover {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%) !important;
}
.scoring-card .img-area .scoring-card__overlay span.scoring-card__overlay-btn {
  background-color: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 5px;
  border-radius: 5px;
  line-height: normal;
  opacity: 1;
}
.scoring-card .scoring-title {
  text-align: center;
  background-color: #f2f2f2;
  color: #000;
  border-radius: 5px;
  padding: 6px;
  font-weight: 500;
  font-size: 14px;
}
.scoring-card .scoring-title .scoring-title-icon {
  display: inline-block;
  max-width: 100%;
  margin-left: 5px;
}

.sidebar-mini .nav-link .item-name {
  display: none;
}

.sidebar.sidebar-mini.sidebar-base:not(.sidebar-hover:hover) .nav-item .sub-nav .nav-item .icon {
  display: flex !important;
}

.filter-dd-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.filter-dd-area .filter-dd__select {
  max-width: 250px;
  width: 100%;
  margin-bottom: 20px;
  margin-right: 20px;
}
.filter-dd-area .form-switch {
  margin-bottom: 20px;
}
.filter-dd-area .form-switch label {
  color: #000;
}

.scoring-chart-area {
  margin-bottom: 30px;
}
.scoring-chart-area .scoring-chart {
  display: flex;
  align-items: center;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
  padding: 0 15px;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  margin: 0 auto;
}
.scoring-chart-area .scoring-chart .scoring-chart-title {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-right: 10px;
}
.scoring-chart-area .scoring-chart .chart-scale {
  display: grid;
  grid-template-columns: repeat(4, 25%);
  align-items: center;
}
.scoring-chart-area .scoring-chart .chart-scale .chart-scale-item {
  display: flex;
  align-items: center;
  padding: 10px;
  white-space: nowrap;
  margin-right: 15px;
}
.scoring-chart-area .scoring-chart .chart-scale .chart-scale-item .chart-scale-title {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.scoring-chart-area .scoring-chart .chart-scale .chart-scale-item img {
  display: block;
  max-width: 100%;
  margin-left: 10px;
}

@media (max-width: 565px) {
  .scoring-chart-area .scoring-chart .chart-scale {
    grid-template-columns: repeat(2, 50%);
  }
}
@media (max-width: 360px) {
  .scoring-chart-area .scoring-chart .chart-scale {
    grid-template-columns: 100%;
  }
}
@media screen and (max-width: 750px) {
  li.page-item {
    display: none;
  }
  .page-item:first-child,
  .page-item:last-child,
  .page-item.active,
  .page-item.disabled {
    display: block;
  }
  .page-item.active ~ .page-item:lt(3),
  .page-item.active ~ .page-item:gt(-3) {
    display: block;
  }
  .page-item:first-child ~ .page-item:lt(3),
  .page-item:last-child ~ .page-item:gt(-3) {
    display: block;
  }
}
.color-indicator-charts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.color-indicator-charts .color-indicator__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 10px;
}
.color-indicator-charts .color-indicator__item .ci__color {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 2px;
}
.color-indicator-charts .color-indicator__item .ci__color.ci__color-skyblue {
  background-color: var(--cs-skyblue);
}
.color-indicator-charts .color-indicator__item .ci__color.ci__color-green {
  background-color: var(--cs-green);
}
.color-indicator-charts .color-indicator__item .ci__color.ci__color-yellow {
  background-color: var(--cs-yellow);
}
.color-indicator-charts .color-indicator__item .ci__color.ci__color-red {
  background-color: var(--cs-red);
}
.color-indicator-charts .color-indicator__item .ci__title {
  font-size: 12px;
  font-weight: 400;
  color: #000;
}
@media (max-width: 565px) {
  .color-indicator-charts {
    display: grid;
    grid-template-columns: repeat(2, 50%);
  }
  .color-indicator-charts.color-indicator-charts_mobile {
    padding: 0 20px;
  }
}
@media (max-width: 380px) {
  .color-indicator-charts {
    grid-template-columns: 100%;
  }
}

.trend-score-chart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 20px auto 0;
}
.trend-score-chart .trend-score-chart__title {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-right: 10px;
  margin-bottom: 0;
}
.trend-score-chart .trend-score-chart__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.trend-score-chart .trend-score-chart__list .trend-score-chart__list-item {
  display: flex;
  align-items: center;
  margin: 10px 0;
  margin-right: 20px;
}
.trend-score-chart .trend-score-chart__list .trend-score-chart__list-item img {
  display: block;
  width: 25px;
  margin-left: 10px;
}
.trend-score-chart .trend-score-chart__list .trend-score-chart__list-item p.trend-score-chart__item-title {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

.avatar-text {
  display: flex;
  align-items: center;
}
.avatar-text[role=button]:hover p {
  text-decoration: underline;
}
.avatar-text img {
  display: block;
  width: 50px;
  margin-right: 10px;
}
.avatar-text p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
}

[data-title] {
  position: relative;
}
[data-title]:hover::after {
  content: attr(data-title);
  width: auto;
  display: block;
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  background-color: black;
  color: #fff;
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 14px;
}
[data-title]:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% - 4px);
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  z-index: 99;
  border: 7px solid transparent;
  border-color: transparent transparent transparent #000;
}

.cs-tag {
  display: inline-block;
  color: #fff;
  padding: 0px 5px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  line-height: 24px;
  min-width: 34px;
  text-align: center;
  position: relative;
}
.cs-tag.cs-tag-green {
  background-color: var(--cs-green);
}
.cs-tag.cs-tag-skyblue {
  background-color: var(--cs-skyblue);
}
.cs-tag.cs-tag-yellow {
  background-color: var(--cs-yellow);
}
.cs-tag.cs-tag-red {
  background-color: var(--cs-red);
}
.cs-tag.cs-tag-grey {
  background-color: var(--cs-grey);
}
.cs-tag.cs-tag-teal {
  background-color: var(--cs-teal);
}
.cs-tag.cs-tag-performer {
  background-color: var(--cs-performer);
}
.cs-tag.cs-tag-front_runner {
  background-color: var(--cs-front_runner);
}
.cs-tag.cs-tag-achiever {
  background-color: var(--cs-achiever);
}
.cs-tag.cs-tag-aspirant {
  background-color: var(--cs-aspirant);
}
.cs-tag.cs-tag-no_data {
  background-color: var(--cs-no_data);
}

.sdg-spinner-image {
  max-width: 580px;
  width: 100%;
  overflow: hidden;
}
.sdg-spinner-image .sdg-spinner-wrapper {
  margin: 0 auto;
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main img {
  display: block;
  width: 100%;
}
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-1,
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-2,
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-3,
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-1 {
  width: 100%;
}
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-2 {
  width: 66%;
}
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-3 {
  width: 43%;
}
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-4 {
  width: 27%;
}
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-center {
  width: 15%;
}
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-1,
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-3 {
  animation: clockwise_rotation 40s linear infinite;
}
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-2,
.sdg-spinner-image .sdg-spinner-wrapper .sdg-spinner-frame .sdg-spinner-main .sdg-spinner-4 {
  animation: counter_clockwise_rotation 40s linear infinite;
}

@keyframes clockwise_rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes counter_clockwise_rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
.table.cs-table thead tr th,
.table.cs-table thead tr td {
  background-color: var(--bs-primary);
  color: #fff;
  white-space: wrap;
}
.table.cs-table thead tr th:first-child,
.table.cs-table thead tr td:first-child {
  border-radius: 5px 0 0 5px;
  padding-left: 10px;
}
.table.cs-table thead tr th:last-child,
.table.cs-table thead tr td:last-child {
  border-radius: 0px 5px 5px 0px;
  padding-right: 10px;
}
.table.cs-table tbody tr td {
  border-bottom: none;
  white-space: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
}
.table.cs-table tbody tr td:first-child {
  border-radius: 5px 0 0 5px;
  padding-left: 10px;
}
.table.cs-table tbody tr td:last-child {
  border-radius: 0px 5px 5px 0px;
  padding-right: 10px;
}

tr.filters-row td {
  background-color: #dff2ff;
}

.table.cs-table-2 thead tr td,
.table.cs-table-2 thead tr th {
  background-color: #fff;
  color: #000;
  white-space: wrap;
  border-bottom: 1px solid #c1c1c1 !important;
}
.table.cs-table-2 tbody tr td {
  border-bottom-color: transparent;
  white-space: wrap;
  color: #000;
}
.table.cs-table-2 tbody tr:nth-child(odd) td {
  background-color: #f1f9ff;
}

.cs-table-border-x tbody tr td {
  border-bottom: 1px solid #d8d8d8 !important;
}

.table-responsive {
  overflow: auto;
  max-height: 450px !important;
}
.table-responsive .cs-table-sticky-header {
  overflow: auto;
}
.table-responsive .cs-table-sticky-header thead {
  position: sticky;
  top: 0;
  z-index: 9;
}

.table-indicators {
  overflow: auto;
  max-height: 550px !important;
}
.table-indicators .cs-table-sticky-header {
  overflow: auto;
}
.table-indicators .cs-table-sticky-header thead {
  position: sticky;
  top: 0;
  z-index: 9;
}

.table-responsive-district-divsion {
  overflow: auto;
}
.table-responsive-district-divsion .cs-table-sticky-header {
  overflow: auto;
}
.table-responsive-district-divsion .cs-table-sticky-header thead {
  position: sticky;
  top: 0;
  z-index: 9;
}

ul.pagination li.page-item:first-child {
  margin-right: 10px;
}
ul.pagination li.page-item:last-child {
  margin-left: 10px;
}
ul.pagination li.page-item a.page-link {
  margin: 4px;
  display: block;
  border-radius: 5px;
}

.table-scroll-y {
  max-height: 450px;
  overflow-y: auto;
}
.table-scroll-y .table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

.score-chart-top-divider {
  border-top: 1px solid #d8d8d8;
  margin: 20px 0;
}

.score-chart-1 {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
}
.score-chart-1 .score-chart-1__item {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 20px;
}
.score-chart-1 .score-chart-1__item .cs-tag {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.score-chart-1 .score-chart-1__item p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 12px;
  color: #000;
}

.bar-goals-wrapper {
  height: 15px;
  display: flex;
  background-color: #e4e4e4;
  border-radius: 2px;
  margin-right: 20px;
}
.bar-goals-wrapper .bar-goal {
  height: 100%;
  width: 5%;
  border-radius: 2px;
  margin-right: 1px;
  position: relative;
}
.bar-goals-wrapper .bar-goal.bar-goal-1 {
  background-color: #e5233d;
}
.bar-goals-wrapper .bar-goal.bar-goal-2 {
  background-color: #dda73a;
}
.bar-goals-wrapper .bar-goal.bar-goal-3 {
  background-color: #4ca146;
}
.bar-goals-wrapper .bar-goal.bar-goal-4 {
  background-color: #c7212f;
}
.bar-goals-wrapper .bar-goal.bar-goal-5 {
  background-color: #ee402d;
}
.bar-goals-wrapper .bar-goal.bar-goal-6 {
  background-color: #28bfe6;
}
.bar-goals-wrapper .bar-goal.bar-goal-7 {
  background-color: #fbc412;
}
.bar-goals-wrapper .bar-goal.bar-goal-8 {
  background-color: #a31d44;
}
.bar-goals-wrapper .bar-goal.bar-goal-9 {
  background-color: #f26a2e;
}
.bar-goals-wrapper .bar-goal.bar-goal-10 {
  background-color: #df1a83;
}
.bar-goals-wrapper .bar-goal.bar-goal-11 {
  background-color: #f99d2a;
}
.bar-goals-wrapper .bar-goal.bar-goal-12 {
  background-color: #bf8d2c;
}
.bar-goals-wrapper .bar-goal.bar-goal-13 {
  background-color: #407f46;
}
.bar-goals-wrapper .bar-goal.bar-goal-15 {
  background-color: #59ba47;
}
.bar-goals-wrapper .bar-goal.bar-goal-16 {
  background-color: #136a9f;
}
.bar-goals-wrapper .bar-goal:not(:hover) .bar-goal__tooltip {
  display: none;
}
.bar-goals-wrapper .bar-goal .bar-goal__tooltip {
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  padding: 2.5px;
  border-radius: 2.5px;
  background-color: #000;
  color: #fff;
  z-index: 9;
  font-size: 12px;
  white-space: nowrap;
}
.bar-goals-wrapper .bar-goal .bar-goal__tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border: 4px solid;
  border-color: #000 transparent transparent transparent;
}

.modal .modal-header {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.modal .modal-header .btn-close {
  background-color: #f0f2f5;
  font-size: 12px;
  border-radius: 50%;
}

.btn.btn-muted {
  background-color: #f2f2f2;
  color: #000;
}
.btn.btn-skyblue {
  background-color: var(--cs-skyblue);
  color: #fff;
}

.cs-tabs-nav {
  margin-bottom: 15px;
}
.cs-tabs-nav .btn {
  background-color: #f2f2f2;
  color: #000;
  margin-right: 10px;
}
.cs-tabs-nav .btn.active {
  background-color: #009900;
  color: #fff;
}

[data-toggle-tab-content] {
  animation: __fade_in 0.5s ease;
}

@keyframes __fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#maap {
  height: 500px;
}

#loading .loader-body {
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading .loader-body img {
  display: block;
  width: 100px;
}

.modal-backdrop {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

.label_wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.label_wrapper.disabled-goal {
  opacity: 0.5;
}
.label_wrapper .label_img {
  display: block;
  width: 25px;
  height: 25px;
  margin-bottom: 4px;
}
.label_wrapper .label_text {
  font-weight: 700;
  font-size: 10px;
}

.disapproval-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.disapproval-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 35%;
  height: auto;
  border-radius: 10px;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

textarea {
  width: 100%;
  margin-bottom: 10px;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .modal-columns-height {
    height: calc(100vh - 325px) !important;
    max-height: calc(100vh - 325px) !important;
  }
}
.district-disputed-icon-div .district-disputed-icon {
  color: #000000;
}

.district-disputed-icon-mobile {
  display: none;
}

@media (max-width: 992px) {
  .district-disputed-icon-div {
    display: none;
  }
  .district-disputed-icon-mobile {
    display: block;
  }
  .mobile-admin-disputed-icon-div {
    display: block !important;
  }
  .mobile-admin-disputed-icon-div .mobile-admin-disputed-icon {
    color: #000000;
    font-size: 12px;
  }
  .admin-disputed-icon-div {
    display: none;
  }
}
.admin-disputed-icon-div .admin-disputed-icon {
  color: #000000;
}

.pagination-container {
  display: flex;
  align-items: flex-start; /* Align pagination container to start */
  justify-content: space-between; /* Spacing between pagination and pagination info */
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Align pages to start */
  list-style: none;
  padding-left: 0;
}

.pagination-info {
  margin-top: 10px;
  font-size: 14px;
}

.pagination .page-item {
  margin-right: 5px;
}

.pagination .page-link {
  padding: 0.5rem 0.75rem;
  border: 1px solid #dee2e6;
  color: var(--bs-btn-border-color);
  text-decoration: none;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
  z-index: 1;
  color: var(--bs-btn-border-color); /* Navy blue for active page */
  background-color: var(--bs-btn-border-color);
  border-color: var(--bs-btn-border-color);
}

@media (max-width: 600px) {
  .pagination {
    justify-content: center; /* Center pages in mobile view */
  }
  .pagination .page-item:not(:last-child) {
    margin-right: 10px; /* Add some space between page items */
  }
}
.forward-goals-drawer {
  padding: 0;
  border-radius: 50%;
  position: absolute;
  left: -16px;
  width: 22px;
  font-size: 10px;
  height: 22px;
}/*# sourceMappingURL=index.css.map */

.action-bar-area {
  max-width: 1400px;
  margin: 0 auto;
}
.action-bar-area .dropdowns-area {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
.action-bar-area .dropdowns-area .dropdowns-item {
  margin-right: 15px;
}
.action-bar-area .dropdowns-area .dropdowns-item .labeled-dropdown label {
  position: relative;
}
.action-bar-area .dropdowns-area .dropdowns-item .labeled-dropdown label span {
  color: #000;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}
.action-bar-area .dropdowns-area .dropdowns-item .labeled-dropdown label select {
  color: #000;
  background-color: #ececee;
  border: 1px solid rgba(0, 0, 0, 0.3019607843);
  padding: 6px 10px;
  padding-left: 60px;
  border-radius: 4px;
  display: block;
  cursor: pointer;
}

.themized-popup .modal-content {
  border-radius: 0px;
}
.themized-popup .modal-header {
  background-color: #ffc107;
  border-radius: 0px;
  border: 0px;
}
.themized-popup .modal-body .pv-table {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.0509803922);
}
.themized-popup .modal-body .pv-table thead tr th:first-child {
  border-top-left-radius: 4px;
}
.themized-popup .modal-body .pv-table thead tr th:last-child {
  border-top-right-radius: 4px;
}
.themized-popup .modal-body .pv-table tbody tr td:last-child {
  text-align: center;
}
.themized-popup .modal-footer {
  height: 50px;
  background-color: #ffc107;
  border-radius: 0px;
}

.dashboard-wrapper .banner-section .banner-area {
  flex-direction: column;
}

.banner-btn-action-area {
  margin-bottom: 30px;
  padding: 0 10px;
  overflow: auto;
  width: 100%;
  padding-bottom: 4px;
}
.banner-btn-action-area ul {
  list-style: none;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  white-space: nowrap;
  padding: 0;
}
.banner-btn-action-area ul li {
  display: inline-block;
}
.banner-btn-action-area ul li:not(:last-child) {
  margin-right: 12px;
}
.banner-btn-action-area ul li button {
  border-color: #ffc107;
  background-color: #ffc107;
  color: #000;
}
.banner-btn-action-area ul li button.active, .banner-btn-action-area ul li button:hover {
  border-color: #ffe185;
  background-color: #ffe185;
  color: #000;
}

#sdg-rotating-wheel-handler.show-rotating-wheel .divisional-cards-title {
  display: none;
}
#sdg-rotating-wheel-handler.show-rotating-wheel .divisional-cards-grid {
  grid-template-columns: 100%;
}
#sdg-rotating-wheel-handler.show-rotating-wheel .divisional-cards-grid .divisional-cards-items:first-child {
  display: none;
}/*# sourceMappingURL=index.css.map */

.note-line {
  font-size: 12px;
  color: #000;
}