* {
  margin: 0;
  padding: 0;
  font-family: 'Inter';
  box-sizing: border-box;
}

:root {
  --light: #F5F6FA;
  --dark: #20282C;
  --light-green: #50C878;
  --primary-clr: #20282C;
  --secondary-clr: #05162E;
  --bg-clr: #F3F4F6;
  --bg-lgt-clr: #F8F8F8;
  --card-bg: #F9F1FD;
  --green-clr: #0FB758;
  --red-clr: #D13B4C;
  --pink-clr: #FD65C0;
  --yellow-clr: #F39C12;
  --purple-clr: #636DC9;
  --blue-clr: #53ABD1;
  --lgt-navy-clr: #6071CB;
  --dark-orange: #F56954;
  --table-txt-clr: #404D61;
  --text-clr: #283C50;
  --sidemenu-txt-clr: var(--text-clr);
  --sidemenu-bg-clr: #EAEBEF;
  --menu-active-clr: #030405;
  --text-second-clr: #534F4F;
  --gray-81: #818284;
  --brbg-clr: #E5E7EB;
  --inter-font: 'Inter';
  --spacer: 32px;
}

body {
  background: var(--bg-clr);
}

::selection {
  background-color: var(--primary-clr);
  color: var(--bs-white);
}

/* Scrollbar css start */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bs-white);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--brbg-clr);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brbg-clr);
}

/* Scrollbar css end */
span.error {
  font-size: 12px;
  font-weight: 300;
  font-family: var(--inter-font);
  color: #ff0000;
}

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

.text-blue-clr {
  color: var(--primary-clr) !important;
}

.text-green-clr {
  color: var(--green-clr) !important;
}

.text-red-clr {
  color: var(--red-clr) !important;
}

.text-orange-clr {
  color: var(--dark-orange) !important;
}

.text-yellow-clr {
  color: var(--yellow-clr) !important;
}

.bg-yellow {
  background: var(--yellow-clr) !important;
}

.bg-primary {
  background: var(--primary-clr) !important;
}

.bg-purple {
  background: var(--purple-clr) !important;
}

.bg-lgt-navy {
  background: var(--lgt-navy-clr) !important;
}

.bg-orange {
  background: var(--dark-orange) !important;
}

.bg-yellow {
  background: var(--yellow-clr) !important;
}

.bg-pink {
  background: var(--pink-clr) !important;
}

.bg-green-clr {
  background: var(--green-clr) !important;
}

.bg-red-clr {
  background: var(--red-clr) !important;
}

a {
  text-decoration: none;
}

.spacer {
  padding: var(--spacer) 0px;
}

.spacer-x {
  padding: 0px var(--spacer);
}

.spacer-xy {
  padding: var(--spacer);
}

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

.fs-12 {
  font-size: 12px !important;
}

.p-relative {
  position: relative;
}

.primary-btn {
  background: var(--primary-clr);
  color: var(--bs-white);
  font-size: 10px;
  font-weight: 600;
  padding: 11px 14px;
  border: 1px solid var(--primary-clr);
  min-width: 110px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.outline-btn {
  background: transparent;
  color: var(--primary-clr);
  font-size: 10px;
  font-weight: 600;
  padding: 11px 14px;
  border: 1px solid var(--primary-clr);
  min-width: 110px;
  text-align: center;
  margin: 0px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

:is(.primary-btn, .outline-btn) svg {
  width: 16px;
  height: 16px;
}

.primary-btn svg path {
  transition: all 0.3s ease-in-out;
}

.secondary-btn {
  min-width: 100px !important;
}

.primary-btn:hover {
  background: var(--primary-clr) !important;
  color: var(--bs-white) !important;
}

.primary-btn:hover svg path {
  fill: var(--bs-white);
}

.secondary-btn:hover,
.primary-border-btn:hover {
  background: #222 !important;
  color: #fff !important;
}

.cancel-btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--bs-black);
  text-transform: capitalize;
  background: #e2e2e2;
  border: 0.5px solid #e2e2e2;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

.text-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--primary-clr);
  border: 0px;
  background: transparent;
  transition: all 0.2s ease-in-out;
}

input:focus,
textarea:focus {
  box-shadow: none !important;
}

img {
  max-width: 100%;
}

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

.my-30 {
  margin: var(--spacer) 0px;
}

.mt-30 {
  margin-top: var(--spacer);
}

.mb-30 {
  margin-bottom: var(--spacer);
}

/* Header css start */

header {
  padding: 18px 0px 18px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: var(--bs-white);
  border-bottom: 1px solid var(--brbg-clr);
}

.header-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

header .page-heading {
  font-size: 18px;
  font-weight: 900;
  color: var(--bs-black);
  line-height: normal;
  font-family: var(--inter-font);
}

.header-menu-list {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px 28px;
}

.header-menu-list li.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-menu-list .lucide {
  stroke: var(--gray-81);
  stroke-width: 1.5px;
}

.search-btn_blk {
  width: 24px;
  height: 24px;
}

.search-btn {
  position: relative;
  width: 24px;
  height: 24px;
}

.search-btn span.search-icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-profile-img {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.header-link-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--bs-white);
  border: 0px;
}

.header-link-btn.active svg path {
  fill: var(--primary-clr);
}

.header-link-btn i {
  font-size: 20px;
  color: #a1a1a3;
}

header button.opnBtn {
  width: 26px;
  height: 26px;
  line-height: 26px;
  background-color: transparent;
  color: var(--bs-black);
  border: 0px;
  padding: 0px;
  border-radius: 0px;
  z-index: 2;
}

button.opnBtn i {
  font-size: 22px;
  color: var(--bs-black);
}


.back-link {
  width: 39px;
  height: 39px;
  background: #efefef;
  border: 1px solid #efefef;
  color: #a2a0a7 !important;
  border-radius: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.back-link svg {
  width: 14px;
  height: 14px;
}

.search-field {
  max-width: 550px;
  width: 100%;
  position: relative;
}

.search-field input {
  padding: 12px 15px 12px 50px;
  background: #efefef;
  border: 1px solid #efefef;
  font-size: 14px;
  color: #a2a0a7 !important;
  border-radius: 8px;
}

.search-field input::placeholder,
.common-search-blk input::placeholder {
  color: #a2a0a7 !important;
}

span.search-icon {
  position: absolute;
  content: "";
  inset: 50% auto auto 8px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
}

span.search-icon i {
  color: #a2a0a7 !important;
}

.header-search {
  position: absolute;
  top: -150px;
  right: 0px;
  width: 350px;
  padding: 12px 15px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.search-slide-in {
  top: 100%;
  visibility: visible;
  opacity: 1;
}


.theme-mode {
  display: flex;
  justify-content: center;
  align-items: center;
}

.theme-mode label {
  width: 24px;
  height: 24px;
  transition: all 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
}

span.theme-icon {
  width: 24px;
  height: 24px;
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}

.theme-mode input+label span.theme-icon>[data-lucide="sun"] {
  display: none;
}

.theme-mode input+label span.theme-icon>[data-lucide="moon"] {
  display: block;
}

.theme-mode input:checked+label span.theme-icon>[data-lucide="moon"] {
  display: none;
}

.theme-mode input:checked+label span.theme-icon>[data-lucide="sun"] {
  display: block;
}

.notification-bell {
  position: relative;
}

.header-link-btn.notification-bell::before {
  position: absolute;
  content: "";
  inset: 1px -2px auto auto;
  width: 10px;
  height: 10px;
  background: #ff5757;
  border-radius: 20px;
  border: 2px solid #fff;
}

.header-flag {
  width: 30px;
  height: 20px;
  border-radius: 4px;
}

.header-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.profile_btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.profile_btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-list-dropdown ul li:not(:last-child) {
  border-bottom: 1px solid var(--brbg-clr);
}

.profile-list-dropdown {
  position: absolute;
  content: "";
  top: calc(100% + 18px);
  right: 0;
  width: 270px;
  max-height: 295px;
  background: #fff;
  border: 1px solid var(--brbg-clr);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  padding: 0px 15px;
  transform: scaleY(0);
  transform-origin: top;
  transition: all .2s ease-in-out;
  opacity: 0;
}

.profile-list-dropdown::before {
  position: absolute;
  content: "";
  top: -7px;
  right: 11px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 2px;
  transform: rotate(45deg);
  z-index: -1;
  border: 1px solid var(--brbg-clr);
  border-width: 1px 0px 0px 1px;
  display: none;
}

.profile-drop {
  transform: scaleY(1);
  opacity: 1;
}

.notification-dropdown {
  width: 320px;
  right: 0;
  left: auto;
  overflow-y: auto;
}

.notification-list-item {
  padding: 0;
}

.notification-list-item span {
  display: block;
}

.profile-list-dropdown ul li {
  padding: 15px 0px;
}

.profile-list-preview {
  width: 100%;
  color: var(--heading-clr);
  transition: all .3s ease-in-out;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

span.profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
}

span.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

span.profile-detail {
  width: calc(100% - 50px);
  line-height: normal;
}

span.profile-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-clr);
  width: 100%;
  display: block;
}

span.profile-email {
  font-size: 12px;
  color: var(--gray-81);
  font-family: var(--inter-font);
  width: 100%;
  display: block;
}

a.profile-links-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-clr);
  font-family: var(--inter-font);
  transition: all 0.3s ease-in-out;
}

a.profile-links-list:hover {
  color: var(--text-clr);
}

a.profile-links-list:not(:last-child) {
  margin-bottom: 10px;
}

span.navicon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--brbg-clr);
  border-radius: 30px;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

span.navicon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2px !important;
}

span.navicon i {
  font-size: 14px;
  color: var(--text-clr);
  transition: all 0.3s ease-in-out;
}

a.profile-links-list:hover span.navicon i {
  color: var(--bs-black);
}


/* Header css end */


/* Login Page CSS Start */
section.login-section {
  background: var(--white-clr);
}

.login-img-blk {
  width: 100%;
  height: 100vh;
  padding: 30px;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}

.img-blk {
  width: 100%;
  height: 100%;
}

.login-img-blk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.login-main-blk {
  width: 100%;
  height: 100vh;
  position: relative;
}

.login-logo {
  padding: 30px 0px 0px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.login-logo img {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.login-form-blk {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 55%);
}

.login-form-blk h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--black-clr);
}

.login-form-blk p {
  font-size: 15px;
  color: #afafaf;
  margin-bottom: 0px;
}

.login-form-blk form {
  margin-top: 40px;
}

.form-group input .is-invalid {
  border-color: red;
}

.form-group input .invalid-feedback {
  color: red;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.login-form-blk form .form-group:first-child {
  margin-bottom: 30px;
}

.login-form-blk form .form-group:nth-child(2) {
  margin-bottom: 12px;
}

.login-form-blk form .form-group label {
  font-size: 14px;
  color: #9794AA;
  margin: 0px 0px 8px 0px;
}

.login-form-blk form .form-group input {
  padding: 15px 16px;
  background: var(--white-clr);
  border: 1px solid #CBCAD7;
  border-radius: 6px;
}

.login-form-blk form .form-group input.is-invalid {
  border: 1px solid red !important;
}

.login-form-blk form .form-group input::placeholder {
  color: #686677;
}

span#eye {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

span#eye i {
  font-size: 14px;
  color: #000833;
}

.login-btn-blk {
  text-align: center;
  margin-top: 45px;
}

.login-btn-blk .btn {
  width: 100%;
  font-size: 18px !important;
  padding: 18px;
  border-radius: 50px;
  border: 0px;
  font-weight: 500;
  background-color: #000000;
  color: white;
}

.forgot_password {
  display: flex;
  justify-content: end;
  align-items: center;
}

.link-button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--bs-link-color);
  text-decoration: underline;
}

/* login css end */
/* side navbar css start */

.side-navbar {
  max-width: 280px;
  width: 100%;
  background: var(--bs-white);
  border: 0px;
  border-radius: 0px;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 0px;
  margin: 0px;
  transition: all .5s ease;
  z-index: 4;
}

.main-wrapper {
  margin-left: 280px;
  transition: all .5s ease;
}

.main-wrapper.main-width {
  margin-left: 100px;
}

.side-hide {
  max-width: 100px;
}


.sidebar-logo {
  padding: 5px;
  height: 89px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bs-white);
  border: 1px solid var(--brbg-clr);
  border-width: 0px 1px 1px 0px;
}

.sidebar-logo a.logo {
  width: 100%;
  height: 80px;
  transition: all .5s ease;
  display: inline-block;
  text-align: center;
  background: var(--primary-clr);
  margin: 0px;
}

.sidebar-logo a.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.side_menu_wrapper {
  border-right: 1px solid var(--brbg-clr);
  background: var(--bs-white);
  transition: all .5s ease;
}

.sidemenu_list {
  width: auto;
  height: calc(100vh - 89px);
  overflow-y: auto;
  padding: 30px 13px 30px 16px;
  margin-right: 3px;
  background: var(--bs-white);
  transition: all .5s ease;
}

.nvx .nvx_text {
  font-size: 10px;
  font-family: var(--inter-font);
  font-weight: 700;
  color: #7587A7;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 0px 0px 12px 12px;
  display: block;
}

.nvx_dots {
  font-size: 10px;
  font-weight: 700;
  color: #7587A7;
  padding: 0px 0px 12px 0px;
  letter-spacing: 0.4px;
  text-align: center;
  display: none;
}

li.sidebar-link:not(:last-child) {
  margin-bottom: 3px;
}

li.sidebar-link a.nav-link {
  color: var(--sidemenu-txt-clr);
  background: transparent;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--inter-font);
  border-radius: 4px;
  transition: all .5s ease-in-out;
  text-transform: capitalize;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

li.sidebar-link a.nav-link.active {
  color: var(--menu-active-clr) !important;
  background: var(--sidemenu-bg-clr);
}

span.menu-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  text-align: center;
}

span.menu-icon svg {
  width: 20px;
  height: 20px;
}

span.menu-icon i.hgi {
  font-size: 16.5px;
  text-align: center;
}

li.sidebar-link a.nav-link.active span.menu-icon svg path,
li.sidebar-link .nav-link[aria-expanded="true"] svg path {
  stroke: var(--menu-active-clr);
}

li.sidebar-link a.nav-link:hover,
.sub-menu-list li a:hover,
.sub-menu-list li a.active {
  color: var(--menu-active-clr) !important;
  background: var(--sidemenu-bg-clr) !important;
}

li.sidebar-link a.nav-link.active:hover,
li.sidebar-link .nav-link[aria-expanded="true"],
li.sidebar-link .nav-link[aria-expanded="true"]:hover {
  color: var(--menu-active-clr) !important;
  background: var(--sidemenu-bg-clr) !important;
}

.nav-link[data-bs-toggle="collapse"]::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  background: url(../images/down-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.3s ease-in-out;
}

.nav-link[aria-expanded="false"]::before {
  transform: translateY(-50%) rotate(-90deg);
}

.nav-link[aria-expanded="true"]::before {
  transform: translateY(-50%) rotate(0deg);
}


button.closeBtn {
  width: 30px;
  height: 30px;
  background: transparent;
  color: var(--sidemenu-txt-clr);
  position: absolute;
  top: 15px;
  right: 15px;
  border: 1px solid var(--sidemenu-txt-clr);
  border-radius: 50%;
  display: none !important;
  z-index: 5;
}

ul.sub-menu-list {
  list-style: none;
  padding-left: 28px;
  padding-top: 10px;
}

.sub-menu-list li a {
  color: var(--sidemenu-txt-clr) !important;
  background: transparent;
  padding: 10px 10px 10px 15px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--inter-font);
  border-radius: 4px;
  transition: all .2s ease-in-out;
  text-transform: capitalize;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.sub-menu-list li a span.menu-icon i {
  font-size: 12px;
}

.side-hide .sidebar-logo {
  padding: 26px 12px;
}

.side-hide span.menu_text,
.side-hide .nav-link[data-bs-toggle="collapse"]::before {
  display: none;
}

.side-hide span.menu-icon {
  margin-right: 0px;
}

.side-hide li.sidebar-link a.nav-link {
  justify-content: center;
}

.side-hide .nvx_text {
  display: none !important;
}

.side-hide .nvx_dots {
  display: block;
}

.side-hide .side_menu_wrapper {
  width: 100px;
}

.side-hide:hover .side_menu_wrapper {
  width: 280px;
}

.side-hide:hover li.sidebar-link a.nav-link {
  justify-content: flex-start;
}

.side-hide ul.sub-menu-list {
  display: none;
}

.side-hide:hover ul.sub-menu-list {
  display: block;
}

.side-hide:hover .nvx_text {
  display: block !important;
}

.side-hide:hover .nvx_dots {
  display: none;
}

.side-hide:hover span.menu_text,
.side-hide:hover .nav-link[data-bs-toggle="collapse"]::before {
  display: block;
}

.side-hide:hover span.menu-icon {
  margin-right: 8px;
}

/* side navbar css end */

.page_top_section {
  min-height: 65px;
  background: var(--bs-white);
  /* border-bottom: 1px solid var(--brbg-clr); */
}

.page-header {
  min-height: 64px;
  padding: 20px 32px;
  background: var(--bs-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.page-header-left {
  gap: 12px;
}

/* .page-header-title {
  padding-right: 12px;
  border-right: 1px solid var(--brbg-clr);
} */

.breadcrumb_nav {
  --bs-breadcrumb-divider: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiM4MTgyODQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGV2cm9uLXJpZ2h0LWljb24gbHVjaWRlLWNoZXZyb24tcmlnaHQiPjxwYXRoIGQ9Im05IDE4IDYtNi02LTYiLz48L3N2Zz4=);
}

.breadcrumb-item {
  font-size: 13px;
  font-weight: 500;
  color: #7587A7;
  line-height: normal;
}

.breadcrumb-item a {
  color: var(--text-clr);
}

.page_otr_flex {
  padding: 12px 32px;
  border-top: 1px solid var(--brbg-clr);
}

.dash-num-info-cards {
  width: 100%;
  height: 100%;
  padding: 24px;
  border-radius: 10px;
  background: var(--bs-white);
  border: 1px solid var(--brbg-clr);
  position: relative;
  z-index: 1;
}

.dash-num-info-cards-header {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
}


.num-info-icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #F0F3F5;
  border: 1px solid var(--brbg-clr);
}

.num-info-icon-box .lucide {
  stroke-width: 1.5px;
  stroke: var(--text-clr);
}

.num-info-content-box {
  width: calc(100% - 68px);
}

span.num-values {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-clr);
}

.num-info-content-box h2 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-clr);
  margin-bottom: 0px;
}

.dash_progress_status {
  margin-top: 65px;
}

.dash_progress_status :is(h3, p) {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--inter-font);
  color: var(--gray-81);
  margin: 0px;
}

.dashboard-card-stats {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 5px;
}

span.dash-stats-icon {
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: end;
}

span.dash-stats-icon svg {
  width: 15px;
  height: 13px;
}

.lucide-trending-up {
  stroke: var(--green-clr);
}

.lucide-trending-down {
  stroke: var(--red-clr);
}

.dash_progress_status .progress {
  height: 4px;
  border-radius: 20px;
  margin-top: 4px;
}

.dash-graph-icon-box {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--bs-white);
  border: 1px solid var(--brbg-clr);
}

.dash-graph-icon-box svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray-81);
}

.dash-graph-icon-box .hgi {
  color: var(--gray-81);
}

.dash-graph-cards {
  background: var(--bs-white);
  border-radius: 10px;
  border: 1px solid var(--brbg-clr);
}

.dash-graph-cards:not(:last-child) {
  margin-bottom: 26px;
}

.dash-graph-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 24px 24px 20px;
  border-radius: 10px 10px 0px 0px;
  border-bottom: 1px solid var(--brbg-clr);
}

.dash-graph-title-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.dash-graph-title-flex h2 {
  font-size: 13px;
  font-weight: 600;
  color: var(--sidemenu-txt-clr);
  margin-bottom: 0px;
  letter-spacing: 0.3px;
}

.graph_card_info p {
  font-size: 10px;
  font-weight: 500;
  margin: 0px;
  color: var(--gray-81);
  margin-top: 4px;
}

span.dash-total-value {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-clr);
  margin-bottom: 0px;
  line-height: 36px;
}

.graph-blk {
  padding: 20px 24px 24px;
  border-radius: 0px 0px 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.graph-blk .dashboard-card-stats p {
  font-size: 10px;
  font-weight: 500;
  margin: 0px;
  color: var(--gray-81);
}

.apexcharts-toolbar {
  opacity: 1;
  border: 0;
}



.dash-page-link-cards {
  width: 100%;
  height: 100%;
}

a.dash-page-link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px 18px;
  background: var(--bs-white);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid var(--brbg-clr);
}

span.dash-page-link-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--brbg-clr);
  border-radius: 50%;
  background: #F0F3F5;
}

span.dash-page-link-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

span.dash-page-link-icon svg {
  stroke: var(--text-clr);
}

span.dash-page-link-title {
  width: calc(100% - 112px);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--text-clr);
}



span.highlight-text {
  font-size: 25px;
  font-weight: 700;
  font-family: var(--inter-font);
  margin-right: 5px;
}

span.highlight-text-info {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
}

.dash-info-content-blk {
  background: #ffffff;
  border-radius: 10px 10px;
}

ul.dash-info-listing {
  list-style: none;
  padding-left: 0px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 0px;
}

ul.dash-info-listing li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 25px;
}



span.dash-info-listing-title {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--inter-font);
  color: var(--text-clr);
}

span.dash-info-listing-value {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--text-clr);
}

.project_info_listing {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 14px 0px;
  border-radius: 0px 0px 10px 10px;
  border-top: 1px solid var(--brbg-clr);
}

.project_info_listing li {
  flex-direction: column;
  border-bottom: 0px !important;
  padding: 0px 25px !important;
  gap: 6px !important;
}

.project_info_listing li:not(:last-child) {
  border-right: 1px solid var(--brbg-clr) !important;
}

.employee-graph-blk,
.project-graph-blk {
  padding: 25px;
}

.apexcharts-xaxis-color {
  color: #818284;
}

.project-graph-wrapper {
  padding-top: 28px;
  border-top: 1px solid #E2E6EA;
}

.map-card {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

.map-chart,
.map-chart iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.top-flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.heading-blk h2 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--text-clr);
  margin-bottom: 0px;
}

.heading-blk p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--inter-font);
  color: var(--text-second-clr);
  margin-bottom: 0px;
}

.side-content-blk {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

fieldset.custom-fieldset {
  border: 1px solid var(--brbg-clr);
  padding: 0px 14px 0px;
  border-radius: 4px;
  background: transparent;
}

legend.custom-legend {
  float: none;
  width: auto;
  font-size: 12px;
  font-family: var(--inter-font);
  font-weight: 400;
  color: var(--text-clr);
  text-align: left;
  margin: 0px 0px 0px 20px;
  padding: 0px 8px;
}

.top_filter_block {
  width: 100%;
  height: 100%;
  padding: 24px;
  border-radius: 10px;
  background: var(--light);
  border: 1px solid var(--brbg-clr);
}

.form-group :is(.form-control, .form-select) {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  box-shadow: none !important;
}

.form-group {
  flex-grow: 1;
}

.form-group .primary-btn {
  padding-top: 14px;
  padding-bottom: 14px;
}

.selectdate {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 11px 0px;
  cursor: pointer;
}

.selectdate svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray-81);
}

.selectdate svg+span {
  font-size: 10px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--gray-81);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.user-activity-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px 0px;
  height: calc(100vh - 220px);
}

.user-list-wrapper {
  max-width: 280px;
  width: 100%;
  background: var(--bs-white);
  border-radius: 0px;
  border-right: 1px solid var(--brbg-clr);
  position: relative;
}

.user-activity-map-wrapper {
  width: calc(100% - 280px);
}

.common-search-blk {
  position: relative;
}

.user-search-blk {
  position: relative;
  padding: 0px 24px;
  border-bottom: 1px solid var(--brbg-clr);
}

.common-search-blk .form-control {
  padding: 14px 0px;
  background: var(--bs-white);
  border: 0px;
  font-size: 13px;
  color: var(--gray-81);
  border-radius: 4px;
  box-shadow: none !important;
  outline: 0;
}

.user-list {
  overflow-y: auto;
  max-height: 70vmin;
}

.user-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--bs-white);
  border-radius: 0px;
  border-bottom: 1px solid var(--brbg-clr);
  cursor: pointer;
}

.user-name-letter {
  width: 32px;
  height: 32px;
  background: var(--text-clr);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--bs-white);
  letter-spacing: 0.3px;
}

.user-list-info-blk {
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.user-list-info-blk p {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--inter-font);
  margin-bottom: 0px;
  color: var(--bs-black);
}

.user-list-status {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}

span.user-status-indicator {
  width: 6px;
  height: 6px;
  background: var(--green-clr);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

span.user-status-time {
  font-size: 10px;
  font-weight: 600;
  font-family: var(--inter-font);
  margin-bottom: 0px;
  color: var(--gray-81);
}

.user-list-item:nth-child(2n) .user-name-letter {
  background: #D899F6;
}

.user-list-item:nth-child(3n) .user-name-letter {
  background: #99DAF6;
}

.user-list-item:nth-child(4n) .user-name-letter {
  background: #E7C583;
}

.user-list-item:nth-child(5n) .user-name-letter {
  background: #F699D6;
}

.user-info-popup {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 70px 26px 26px;
  border-radius: 24px;
}

.user-pp-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

button.closepopup {
  position: absolute;
  content: "";
  top: 26px;
  right: 20px;
  background: #fff;
  border: 0px;
  width: 25px;
  height: 25px;
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

button.closepopup i {
  font-size: 22px;
  color: var(--text-clr);
}

.user-pp-detail .user-list-info-blk p {
  text-align: center;
}

/* Table css start */

.common-table-wrapper {
  background: var(--bs-white);
  border-radius: 10px;
  border: 1px solid var(--brbg-clr);
  position: relative;
}

.common-table-filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 24px 24px;
}

.common-left-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.common-right-blk {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.common-sort-blk label {
  font-size: 13px;
  font-family: var(--inter-font);
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--gray-81);
}

.common-sort-blk .form-select {
  background-color: var(--bs-white);
  border-color: var(--brbg-clr);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-81);
  border-radius: 4px;
}

:is(.common-sort-blk, .td-select, .common-input-field) .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23818284' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.common-sort-blk .form-select:focus {
  box-shadow: none;
}

.common-table-filter-wrapper .common-search-blk {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.common-table-filter-wrapper .common-search-blk label {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--inter-font);
  color: var(--gray-81);
}

.common-table-filter-wrapper .common-search-blk input.form-control {
  border: 1px solid var(--brbg-clr);
  padding: 12px;
}



.table-blk::-webkit-scrollbar-track {
  margin: 10px 0px;
}

.table-blk table {
  border-spacing: 0px;
  border-collapse: separate;
  margin: 0px;
}

.table-blk table :where(thead, tbody) tr :is(th, td):first-child {
  padding-left: 24px !important;
}

.table-blk table thead tr th {
  color: var(--bs-black) !important;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 18px 15px !important;
  white-space: nowrap;
  border-top: 1px solid var(--brbg-clr);
}

.table-blk table tbody tr td {
  background: var(--bs-white);
  color: var(--text-clr) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 15px !important;
  vertical-align: middle;
  white-space: nowrap;
  border-bottom: 1px solid var(--brbg-clr);
}


.table-blk table .td-max-width {
  max-width: 310px;
  min-width: 310px;
  width: 100%;
  display: inline-block;
  white-space: break-spaces;
}

.table-blk table .td-action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.table-blk table :is(.td-edit-btn, .td-view-btn, .td-add-btn, .td-info-btn, .td-download-btn, .td-share-btn, .td-linkattach-btn, .td-pdf-btn, .td-currency-btn) {
  width: 32px;
  height: 32px;
  border: 0px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dark);
}

.table-blk table .td-delete-btn {
  width: 32px;
  height: 32px;
  border: 0px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dark);
}

span.td-action svg {
  color: #fff;
  width: 20px;
}

.table-blk table .td-toggle-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-blk table .td-toggle-box input+label {
  width: 42px;
  height: 22px;
  background: #cdd3df;
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
}

.table-blk table .td-toggle-box input:checked+label {
  background: var(--primary-clr);
}

.table-blk table .td-toggle-box input+label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--bs-white);
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
}

.table-blk table .td-toggle-box input:checked+label::before {
  left: calc(100% - 20px);
}

.table-blk table .td-status {
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--text-clr);
  border: 1px solid var(--brbg-clr);
  background: var(--bs-white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.st-dot {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-attachment: #eee;
}

.table-blk table :is(.st-active, .st-completed) .st-dot {
  background: #01C720;
}

.table-blk table .st-blue {
  background: rgb(0 108 255 / 16%);
  color: var(--primary-clr);
}

.table-blk table .st-pending {
  background: rgb(255 161 20 / 15%);
  color: #FFA114;
}

.td-link {
  color: var(--primary-clr);
  text-decoration: underline;
}

.td-flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.td-user-img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.td-user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.td-user-text {
  width: calc(100% - 38px);
}

.td-select .form-select {
  border: 0px;
  max-width: 196px;
  min-width: 120px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.10);
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--inter-font);
  color: var(--text-second-clr);
  border-radius: 4px;
}

.table-pagination {
  width: 100%;
  background: var(--bs-white);
  padding: 24px 24px;
  border-radius: 0px 0px 10px 10px;
}

.table-pagination ul li.page-item.disabled .page-link {
  width: auto !important;
  color: #CCD3DE !important;
  pointer-events: none;
}

.table-pagination ul :is(li.page-item:first-child, li.page-item:last-child) .page-link {
  width: auto !important;
  color: var(--text-clr);
}

.table-pagination ul li.page-item .page-link {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid var(--brbg-clr);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--text-clr);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
  border-radius: 4px;
}

li.page-item.active .page-link {
  background: var(--primary-clr) !important;
  color: var(--bs-white) !important;
}

.next-page .page-link {
  color: var(--primary-clr) !important;
}

.table-pagination ul li.page-item .page-link:focus {
  box-shadow: none;
}

/* Table css end */

.common-modal .modal-content {
  border-radius: 24px;
  border: 0px;
  background: var(--bg-clr);
}

.common-modal .modal-header {
  padding: 36px 32px;
  border: 0px;
}

.common-modal .modal-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.common-modal .btn-close {
  background-color: #EFEFEF;
  border-radius: 12px;
  width: 32px;
  height: 32px;
  opacity: 1;
  box-shadow: none;
}

.common-modal .modal-title {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--inter-font);
  font-weight: 600;
  color: var(--bs-black);
}

.common-modal .modal-save-btn {
  background: var(--primary-clr);
  color: var(--bs-white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 10px;
  border: 1px solid var(--primary-clr);
  min-width: 110px;
  text-align: center;
  margin: 0px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.common-modal .modal-body {
  padding: 0px 32px 36px;
}

.edit-project-blk,
.padding-blk {
  padding: 65px;
  border-radius: 24px;
  background: var(--bs-white);
}

.common-form-blk {
  padding: 32px;
  border-radius: 24px;
  background: var(--bs-white);
}

.input-fieldset {
  padding: 0px !important;
  border-radius: 5px !important;
}

.input-fieldset legend.custom-legend {
  color: var(--text-second-clr) !important;
  font-weight: 500;
  font-size: 14px;
  margin-left: 35px;
}

.common-input-field {
  position: relative;
}

.common-input-field :is(.form-control, .form-select) {
  padding: 8px 12px 8px 45px;
  border: 0px;
  border-radius: 5px;
  font-weight: 500;
  box-shadow: none;
}

.common-input-field .form-control::placeholder {
  font-size: 14px;
  color: #d5d5d5;
}

.common-input-icon {
  position: absolute;
  content: "";
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

textarea.form-control+.common-input-icon {
  top: 18px;
}

.modal-map-blk {
  width: 100%;
  height: 260px;
  border-radius: 20px;
}

.modal-map-blk iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.common-modal .modal-body .common-table-wrapper {
  margin-top: 0px;
}

nav.common-tabs {
  margin-bottom: 20px;
  border-radius: 24px 24px 0px 0px;
  overflow-x: auto;
  scrollbar-width: none;
}

nav.common-tabs .nav-tabs {
  border-bottom: 5px solid var(--bg-clr);
  flex-wrap: nowrap;
  white-space: nowrap;
}

nav.common-tabs .nav-tabs .nav-link {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--text-clr);
  padding: 20px 28px;
  border: 5px solid var(--bg-clr);
  border-width: 0px 0px 5px;
  margin-bottom: -5px;
}

nav.common-tabs .nav-tabs .nav-link.active {
  color: var(--primary-clr);
  border-color: var(--primary-clr)
}

nav.common-tabs .nav-tabs .nav-link:first-child {
  border-top-left-radius: 24px;
}

.modal-upload-file-blk label {
  color: var(--text-second-clr) !important;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.modal-upload-file {
  margin-top: 8px;
}

.modal-upload-file label {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed var(--primary-clr);
  background: rgb(0 108 255 / 15%);
  color: var(--primary-clr) !important;
  border-radius: 5px;
  cursor: pointer;
}


.common-check-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
}

.common-check-blk input+label {
  width: 60px;
  height: 32px;
  background: #cdd3df;
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
}

.common-check-blk input:checked+label {
  background: var(--primary-clr);
}

.common-check-blk input+label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--bs-white);
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
}

.common-check-blk input:checked+label::before {
  left: calc(100% - 29px);
}

.common-btn-blk {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  margin-top: 10px;
}

.common-btn-blk button {
  width: 50%;
}

.added-admin {
  background: rgb(0 108 255 / 15%);
}

.inspect-fc1 {
  background: #796EFF;
}

.inspect-fc2 {
  background: #48A7EB;
}

.inspect-fc3 {
  background: #01C720;
}

.inspection-info-cards {
  height: 100%;
  padding: 38px 26px;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  position: relative;
}

.inspection-info-icon-box {
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.inspection-info-content-box {
  width: calc(100% - 73px);
}

.inspection-info-content-box h2 {
  font-size: 16px;
  font-weight: 500;
  color: #E5E5E5;
  margin-bottom: 0px;
}

span.inspection-values {
  font-size: 24px;
  font-weight: 700;
  color: var(--bs-white);
}

.common-content-wrapper {
  padding: 26px 40px 40px;
  background: var(--bs-white);
  border-radius: 24px;
  position: relative;
  height: 100%;
}

.sub-heading {
  margin-bottom: 20px;
}

.sub-heading h2 {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--bs-black);
  margin-bottom: 0px;
}

.check-input-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.check-input-field input+label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

span.radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 20px;
  border: 1px solid var(--primary-clr);
  display: flex;
  position: relative;
}

span.radio-circle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: transparent;
  transform: translate(-50%, -50%);
}

.check-input-field input:checked+label span.radio-circle::before {
  background: var(--primary-clr);
}

span.radio-text {
  width: calc(100% - 28px);
}

.addsignature {
  background: rgb(0 108 255 / 15%);
  color: var(--primary-clr);
  font-size: 14px;
  font-weight: 600;
  padding: 32px 30px;
  border: 1px solid var(--primary-clr);
  width: 100%;
  text-align: center;
  margin: 0px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.common-calendar-wrapper {
  padding: 26px 40px 40px;
  background: var(--bs-white);
  border-radius: 24px;
  position: relative;
  height: 100%;
}


.reported_content_block {
  border: 1px solid var(--brbg-clr);
  border-width: 1px 0px;
  padding: 24px;
}

.reported_content_item {
  border: 1px solid var(--brbg-clr);
  padding: 16px;
  border-radius: 10px;
}

.reported_content_item:not(:last-child) {
  margin-bottom: 12px;
}

.reported_user_img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.reported_user_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.reported_user_detail {
  width: calc(100% - 58px);
}

.reported_reason_content span {
  font-size: 14px;
  color: var(--gray-81);
}

.reported_on {
  font-size: 12px;
  color: var(--gray-81);
}

.reported_badge {
  margin-left: auto;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--bs-white);
  background: #3e464e;
  border-radius: 20px;
}

.reported_post,
.reported_post_action_block {
  margin-left: calc(42px + 16px);
  margin-top: 16px;
}

.reported_post {
  padding: 16px;
  background: #f1f1f1;
  border-radius: 6px;
  max-width: 645px;
}

.reported_post_media_block {
  min-height: 100px;
  max-height: 200px;
  height: 100%;
  width: 100%;
  background: #122332;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
}

.reported_post_media_block :is(img, video) {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.reported_post_action_block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reported_post_action_btn {
  border: 1px solid var(--brbg-clr);
  border-radius: 6px;
  background: var(--bs-white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.reported_post_action_btn:hover {
  background: var(--dark);
  color: var(--bs-white);
}

.reported_post_action_btn span svg {
  width: 18px;
}


/* new css 21-07-25 start */

.event_challenge_list {
  border: 1px solid var(--brbg-clr);
  border-width: 1px 0px;
  padding: 24px;
}

.event_challenge_item {
  border: 1px solid var(--brbg-clr);
  padding: 16px;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.event_challenge_item:not(:last-child) {
  margin-bottom: 12px;
}

.ec_cover_img_blk {
  width: 130px;
  height: 100px;
  background: #b7b7b7;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--bs-white);
  font-size: 14px;
}

.ec_cover_img_blk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.ec_info_blk {
  width: calc(100% - 150px);
}

.ec_header_blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.ec_header_blk h2 {
  font-size: 20px;
  margin-bottom: 0px;
}

.ec_badges {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--bs-white);
  background: #adadad;
  border-radius: 20px;
}

.ec_badges:first-child {
  color: var(--bs-black);
  background: #ededed;
}

.ec_badges:last-child {
  color: var(--bs-white);
  background: #3e464e;
}

.ec_info {
  margin-bottom: 10px;
}

.ec_info p {
  margin-bottom: 0px;
}

.ec_info p span {
  color: var(--gray-81);
  display: inline-block;
  margin-right: 10px;
}

.ec_btns {
  border: 1px solid var(--brbg-clr);
  border-radius: 6px;
  background: var(--bs-white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.ec_btns:hover {
  background: var(--dark);
  color: var(--bs-white);
}

.ec_btns svg {
  width: 18px;
}

.outline_blk {
  padding: 24px;
  border-radius: 10px;
  background: var(--bs-white);
  border: 1px solid var(--brbg-clr);
}

.outline_blk:not(:last-child) {
  margin-bottom: 24px;
}

label.browse_file_label {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1.5px dashed #b9bfc5;
  border-radius: 8px;
  padding: 20px;
}

.file_preview {
  width: 100px;
  height: 90px;
  border-radius: 8px;
  background: #b1bdcd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.attachment-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3e464e;
}

.attachment-icon svg {
  width: 20px;
  height: 20px;
}

.file_preview_img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
}

label.browse_file_label p {
  font-size: 14px;
  font-weight: 500;
  margin: 14px 0px 5px;
  color: #5c5c5c;
}

label.browse_file_label span {
  font-size: 12px;
  font-weight: 500;
  color: #5c5c5c;
}


.event_setting_item:not(:last-child) {
  margin-bottom: 15px;
}

.toggle-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.toggle-box input+label {
  width: 42px;
  height: 22px;
  background: #cdd3df;
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
}

.toggle-box input:checked+label {
  background: var(--primary-clr);
}

.toggle-box input+label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--bs-white);
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
}

.toggle-box input:checked+label::before {
  left: calc(100% - 20px);
}

.event_setting_info h3 {
  font-size: 14px;
  color: var(--bs-black);
  margin-bottom: 2px;
}

.event_setting_info p {
  font-size: 13px;
  color: #5e5e5e;
  margin-bottom: 0px;
}

.event_preview_cover {
  width: 100%;
  height: 100px;
  border-radius: 8px;
  background: #b1bdcd;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-bottom: 12px;
}

.inner_outline_blk {
  padding: 16px;
  border-radius: 10px;
  background: var(--bs-white);
  border: 1px solid var(--brbg-clr);
}

.inner_outline_blk h3 {
  font-size: 16px;
  color: var(--bs-black);
}

p.ev_pre_info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #625d5d;
  margin-bottom: 5px;
}

p.ev_pre_info svg {
  width: 16px;
  height: 16px;
}

.ec_participants_preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  font-size: 14px;
  color: var(--text-clr);
}

.ec_participants_preview span {
  font-weight: 600;
  color: var(--bs-black);
}

.ec_participants_preview strong {
  font-size: 14px;
  font-weight: 500;
  color: #625d5d;
}

.ec_participant_avatars {
  display: inline-flex;
  align-items: center;
}

.ec_participant_avatars img {
  width: 26px;
  height: 26px;
  border: 2px solid var(--bs-white);
  border-radius: 50%;
  object-fit: cover;
  background: #e9ecef;
}

.ec_participant_avatars img:not(:first-child) {
  margin-left: -8px;
}

p.infomative_note {
  padding: 10px;
  margin: 16px 0px;
  background: #e6f7ffdd;
  border-radius: 10px;
  font-size: 12px;
  color: #525252;
}

.infomative_note svg {
  width: 16px;
  height: 16px;
}

.user_profile_info {
  margin-bottom: 16px;
}

.admin-profile-form {
  max-width: 920px;
  margin: 0 auto;
}

.profile-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--brbg-clr);
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-black);
}

.profile-close-btn svg {
  width: 18px;
  height: 18px;
}

.admin-profile-cover {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.profile-image-btn {
  width: auto;
  cursor: pointer;
}

.user_preview_cover {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.user_preview_cover img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.user_profile_info p {
  margin-bottom: 5px;
  font-size: 14px;
  color: #484444;
}

.st-active {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #297a29;
  background: #d7ffca;
  padding: 3px 12px;
  line-height: normal;
  border-radius: 20px;
}

.st-inactive {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #d58044;
  background: #ffeaca;
  padding: 3px 12px;
  line-height: normal;
  border-radius: 20px;
}

.user_profile_item:not(:last-child) {
  margin-bottom: 20px;
}

.user_profile_item h3 {
  font-size: 14px;
  font-weight: 400;
  color: #818181;
  margin-bottom: 2px;
}

.user_profile_item p {
  font-size: 16px;
  color: var(--bs-black);
}

.favsports_badges_blk {
  margin-top: 10px;
}

.favsports_badges_blk span {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  padding: 5px 10px;
  background: #ededed;
  border-radius: 5px;
  display: inline-block;
}

.admin-message-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 24, 39, 0.45);
}

.admin-message-modal {
  position: relative;
  width: min(100%, 520px);
  padding: 24px;
  border-radius: 10px;
  background: var(--bs-white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
}

.admin-message-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--brbg-clr);
  border-radius: 50%;
  background: var(--bs-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-black);
}

.admin-message-close svg {
  width: 18px;
  height: 18px;
}

.admin-message-modal textarea {
  min-height: 140px;
  resize: vertical;
}

.admin-posts-modal {
  width: min(100%, 720px);
}

.admin-posts-list {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 4px;
}

.common_stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 100px;
}

.common_stats_item h2 {
  font-size: 14px;
  font-weight: 500 !important;
  color: #646464;
  text-align: center;
  margin: 0px;
}

span.common_stats_value {
  font-size: 25px;
  font-weight: 500;
  font-family: var(--i-font);
  color: var(--primary-clr);
  display: block;
  text-align: center;
}

.recent_post_item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.recent_post_item:not(:last-child) {
  margin-bottom: 16px;
}

.recent_post_cover {
  width: 60px;
  height: 60px;
  background: #ddd;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  color: #5c5c5c;
  text-transform: capitalize;
}

.recent_post_cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent_post_info {
  width: calc(100% - 72px);
}

.recent_post_action_info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.recent_post_info p {
  font-weight: 500;
  color: var(--bs-black);
}

.recent_post_action_info span {
  font-size: 14px;
  color: #626262;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.recent_post_action_info span svg {
  width: 16px;
  height: 16px;
}

.report_violation_item:not(:last-child) {
  margin-bottom: 16px;
}

.badge-dark {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  padding: 5px 10px;
  background: #384358;
  border-radius: 5px;
  display: inline-block;
}

.report_comment p {
  margin-bottom: 0px;
}

.report_info span {
  font-size: 14px;
  color: #5c5c5c;
}

.account_report_item:not(:last-child) {
  margin-bottom: 16px;
}

.account_report_info span {
  font-size: 14px;
  color: #5c5c5c;
}

.info-listing_item:not(:last-child) {
  margin-bottom: 12px;
}

.info-listing-title {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--inter-font);
  color: var(--text-clr);
}

.info-listing-value {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--text-clr);
}

.registered_participant_item:not(:last-child) {
  margin-bottom: 16px;
}

.registered_user_blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.registered_user_img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.registered_user_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.registered_user_info h3 {
  font-size: 14px;
  margin-bottom: 2px;
}

.registered_user_info p {
  font-size: 13px;
  margin-bottom: 0px;
}


.registered_blk_action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.common_badges {
  font-size: 12px;
  font-weight: 500;
  color: var(--bs-black);
  padding: 4px 12px;
  background: rgb(239 239 239);
  border-radius: 6px;
}

.event_status_info {
  padding: 16px;
  border-radius: 10px;
  background: #f7f7f7;
  border: 1px solid var(--brbg-clr);
  height: 100%;
}

.event_status_info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.event_status_info h3 svg {
  margin-right: 5px;
}

.event_status_info p {
  font-size: 14px;
  margin-bottom: 0px;
}





























/* new css 21-07-25 end */







/* Media css start */

@media screen and (min-width: 1800px) {
  .container {
    max-width: calc(100% - 32px) !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1880px) {
  .container {
    max-width: calc(100% - 32px) !important;
  }
}

@media screen and (min-width:1300px) {
  .rtgl-d-none {
    display: none !important;
  }
}

@media screen and (max-width: 1300px) {
  .container {
    max-width: calc(100% - 32px) !important;
  }

  header button.opnBtn {
    display: block !important;
  }

  .page-header-right-open-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-clr);
  }

  .page-header-right-items {
    position: fixed;
    content: "";
    top: 89px;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--bs-white);
    z-index: 4;
    border-left: 1px solid var(--brbg-clr);
    transition: all 0.5s ease-in-out;
    box-shadow: -2px 12px 18px rgb(40 60 80 / 15%);
  }

  .page-header-right-open {
    right: 0;
  }

  .page-header-right .side-content-blk {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .page-header-right :is(.common-calander-blk, .primary-btn, .outline-btn) {
    width: 100%;
  }

  .page-header-right-close-toggle {
    width: 100%;
    min-height: 64px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--brbg-clr);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--inter-font);
    color: var(--text-clr);
  }
}

@media screen and (max-width:992px) {
  .side-hide {
    max-width: 280px;
    left: -100%;
  }

  .main-wrapper,
  .main-wrapper.main-width {
    margin-left: 0px;
  }

  .side-navbar::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: #0000001f;
    z-index: -1;
  }

  button.closeBtn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .sidebar-logo a.logo {
    width: 120px;
  }

}

@media screen and (max-width: 768px) {
  .search-field {
    max-width: 80%;
    width: 100%;
  }

  .search-btn {
    display: inline-flex !important;
  }

  .search-btn span.search-icon {
    border: 0px;
  }

}

@media screen and (max-width: 576px) {

  .header-menu-list {
    gap: 15px 15px;
  }

  .common-modal .modal-header {
    flex-direction: column;
  }

  .common-modal .modal-title {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }

}

@media screen and (max-width: 350px) {}
