@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
::after,
::before,
:focus,
.form-control:focus {
  box-shadow: none;
  outline: none !important;
}

img,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
::after,
::before,
:hover,
:focus,
.form-control:focus {
  transition: all 0.3s ease 0s;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
}

.nav-item .profile-username h6 {
  background: #32438e;
  border-radius: 50px;
  width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  color: white;
  font-size: 14px;
  border: 2px solid #f7cf18;
}

.nav-item .profile-username {
  display: flex;
  align-items: center;
  gap: 14px;
}

li {
  list-style: none;
}

body.modal-open,
body:hover {
  transition: all 0s ease 0s;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px !important;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px #fff;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: #32438e;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #32438e;
}

:root {
  --body-color: #e4e9f7;
  --sidebar-color: #fff;
  --primary-color: #32438e;
  --secondary-color: #ffc904;
  --primary-color-light: #f6f5ff;
  --toggle-color: #ddd;
  --text-color: #707070;

  --tran-03: all 0.2s ease;
  --tran-03: all 0.3s ease;
  --tran-04: all 0.3s ease;
  --tran-05: all 0.3s ease;
}

.h1 {
  font-size: 64px;
}

.h2 {
  font-size: 48px;
}

.h3 {
  font-size: 40px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 13px;
}

body {
  min-height: 100vh;
  background-color: var(--body-color);
  transition: var(--tran-05);
}

::selection {
  background-color: var(--primary-color);
  color: #fff;
}

.dashboardsignin {
  margin: 0 !important;
  margin-top: 40px !important;
}

body.dark {
  --body-color: #18191a;
  --sidebar-color: #242526;
  --primary-color: #3a3b3c;
  --primary-color-light: #3a3b3c;
  --toggle-color: #fff;
  --text-color: #ccc;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 250px;
  padding: 10px 14px;
  background: var(--sidebar-color);
  transition: var(--tran-05);
  z-index: 100;
}

.sidebar.close {
  width: 88px;
}

.sidebar li {
  /* height: 50px; */
  list-style: none;
  /* display: flex; */
  align-items: center;
  margin-top: 10px;
}

.sidebar header .image,
.sidebar .icon {
  min-width: 60px;
  border-radius: 6px;
}

.MuiAutocomplete-input {
  padding: 4px 4px 4px 10px !important;
}

.sidebar .icon {
  min-width: 30px;
  border-radius: 6px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sidebar .text,
.sidebar .icon {
  color: var(--text-color);
  transition: var(--tran-03);
}

.sidebar .text {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 1;
}

.sidebar.close .text {
  opacity: 0;
}

.sidebar header {
  position: relative;
}

.geo_location {
  display: flex;
  gap: 6px;
}

.star_red {
  color: red;
}

.sidebar header .image-text {
  align-items: center;
}

.sidebar header .logo-text {
  display: flex;
  flex-direction: column;
}

header .image-text .name {
  margin-top: 2px;
  font-size: 18px;
  font-weight: 600;
}

header .image-text .profession {
  font-size: 16px;
  margin-top: -2px;
  display: block;
}

.sidebar header .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar header .image img {
  width: 40px;
  border-radius: 6px;
}

.sidebar header .toggle {
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%) rotate(180deg);
  height: 31px;
  width: 31px;
  z-index: 99999;
  background-color: var(--primary-color);
  color: var(--sidebar-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: var(--tran-05);
}

body.dark .sidebar header .toggle {
  color: var(--text-color);
}

.sidebar.close .toggle {
  transform: translateY(-50%) rotate(0deg);
}

.sidebar .menu {
  margin-top: 20px;
}

.sidebar li.search-box {
  border-radius: 6px;
  background-color: var(--primary-color-light);
  cursor: pointer;
  transition: var(--tran-05);
}

.sidebar li.search-box input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--primary-color-light);
  color: var(--text-color);
  border-radius: 6px;
  font-size: 17px;
  font-weight: 500;
  transition: var(--tran-05);
}

.sidebar li a {
  list-style: none;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--tran-03);
}

.sidebar li a:hover {
  background-color: var(--primary-color);

  .arrow {
    color: white;
  }
}

.sidebar li a:hover .icon,
.sidebar li a:hover .text {
  color: var(--sidebar-color);
}

body.dark .sidebar li a:hover .icon,
body.dark .sidebar li a:hover .text {
  color: var(--text-color);
}

.sidebar .menu-bar {
  height: calc(100% - 55px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: scroll;
}

.menu-bar::-webkit-scrollbar {
  display: none;
}

.sidebar .menu-bar .mode {
  border-radius: 6px;
  background-color: var(--primary-color-light);
  position: relative;
  transition: var(--tran-05);
}

.menu-bar .mode .sun-moon {
  height: 50px;
  width: 60px;
}

.mode .sun-moon i {
  position: absolute;
}

.mode .sun-moon i.sun {
  opacity: 0;
}

body.dark .mode .sun-moon i.sun {
  opacity: 1;
}

body.dark .mode .sun-moon i.moon {
  opacity: 0;
}

.menu-bar .bottom-content .toggle-switch {
  position: absolute;
  right: 0;
  height: 100%;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
}

.toggle-switch .switch {
  position: relative;
  height: 22px;
  width: 40px;
  border-radius: 25px;
  background-color: var(--toggle-color);
  transition: var(--tran-05);
}

.switch::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  background-color: var(--sidebar-color);
  transition: var(--tran-04);
}

body.dark .switch::before {
  left: 20px;
}

.home {
  position: absolute;

  left: 250px;
  /* height: 100vh; */
  width: calc(100% - 250px);
  background-color: var(--body-color);
  transition: var(--tran-05);
}

.home .text {
  font-size: 30px;
  font-weight: 500;
  color: var(--text-color);
  padding: 12px 60px;
}

.sidebar.close~.home {
  left: 78px;
  height: 100vh;
  width: calc(100% - 78px);
}

body.dark .home .text {
  color: var(--text-color);
}

.menu-links {
  list-style-type: none;
  padding: 0;
}

.swal-modal {
  width: 800px;
}

.nav-link {
  margin-bottom: 6px;
}

.nav-link .active {
  background: var(--primary-color);
  position: relative;
  color: white;
}

.nav-link .active::after {
  content: "";
  position: absolute;
  background: var(--secondary-color);
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 5px;
  left: 0;
  border-radius: 4px;
}

.nav-link a {
  display: block;
  padding: 12px 8px;
  text-decoration: none;
  color: #333;
}

.nav-link .active i {
  color: var(--sidebar-color);
}

.nav-link .active span {
  color: var(--sidebar-color);
}

.nav-link a:hover {
  background-color: #f0f0f0;
}

.menu-links {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  position: relative;
}

.dropdown-title button {
  border: navajowhite;
}

.dropdown-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  z-index: 1;
  width: 100%;
  left: -56px;
  top: 100%;
  margin-top: 10px;
  padding: 0;
  list-style: none;
  border: navajowhite;
  padding: 12px 0px 27px 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.dropdown-menu.open {
  display: block;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.notif-center a {
  padding: 15px 0 !important;
}

.dropdown-menu li a:active {

  background: none;

  color: black;
}

.dropdown-menu li a i {
  color: #32438e;
  font-size: 14px;
  font-weight: 300;
}

.dropdown-menu li a {
  display: block;
  font-size: 12px;
  padding: 9px 0px 12px;
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
  border-bottom: 1px solid #f7cf1852;
}

.dropdown-toggle {
  display: block;
  text-align: left;
  width: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.dropdown-toggle::after {
  content: none !important;
}

.nav-link.dropdown-open {
  position: relative;
}

.navbar-header {
  background-color: var(--sidebar-color);
  border-bottom: 1px solid #d0d0d0 !important;
  padding: 12px 0;
}

.navbar-nav .nav-link {
  color: var(--text-color);
}

.navbar-form .input-group {
  background: #f4f4f4;
  width: 370px;
  height: 45px;
  border-radius: 5px;
}

.input-group .btn {
  height: 30px;
  opacity: 0.5;
}

.navbar-form .input-group input {
  width: 230px;
  background: #f4f4f4;
  border: none;
  font-size: 13px;
  opacity: 0.5;
  height: 45px;
}

.notification {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: var(--secondary-color);
  color: var(--body-color);
  border-radius: 50%;
  padding: 4px 8px;
}

.dropdown-menu[data-bs-popper] {
  left: -139px;
}

.dropdown-menu {
  min-width: 225px;
  top: 50px !important;
  z-index: 11;
}

.scroll-wrapper {
  max-height: 420px;
  overflow-y: auto;
}

.profile-pic {
  display: flex;
  align-items: center;
  gap: 3px;
}

.profile-username {
  margin-left: 8px;
}

.scrollbar-outer {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.05);
}

.container-fluid {
  padding: 0 30px 0 40px;
}

th {
  background-color: #32438e !important;
  color: white !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

th svg {
  fill: white !important;
}

td {
  background-color: #ffffff !important;
  font-size: 12px !important;
  text-transform: capitalize !important;
}

.name-user h5 {
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 21px;
}

.name-user h5 span {
  color: var(--primary-color);
}

.name-user p {
  font-size: 11px;

  opacity: 0.7;

  margin: 0;
}

.navbar-header-left {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin: 0 40px 0 10px;
}

.topbar-nav {
  gap: 24px;
}

.profile-username p {
  margin: 0;
  opacity: 0.5;
}

.profile-username strong {
  display: flex;
  align-items: center;
  width: 100%;
}

.profile-username strong span {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}

.notif-box {
  padding: 14px 25px;
  min-width: 370px;
}

.notif-center {}

.notif-content {}

.notif-box .notif-center .hour-notification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.notif-box .notif-center span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
}

.notif-box .notif-center span p {
  margin: 0;
  font-weight: 500;
}

.notif-box .notif-center h6 {
  font-size: 15px;
}

.notif-box .see-all {
  background: var(--primary-color);
  color: white;
  justify-content: center;
}

.fully-bodywrap {
  padding: 20px 20px;
  background: white;
  margin: 12px;
}

.upload-container {
  width: 215px;
  height: 217px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.upload-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed #555;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  font-size: 44px;
  cursor: pointer;
}

.upload-circle:hover {
  background-color: #2e477a;
}

.upload-container input[type="file"] {
  display: none;
}

.upload-container label {
  font-size: 16px;
  cursor: pointer;
}

.upload-container label span {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
  border: 2px dashed #2e477a;
  border-radius: 60%;
  width: 140px;
  height: 140px;
}

.dasboarbody--mainhead {
  padding: 0px 0px 0 17px;
  position: relative;
  margin: 0 0 20px;
}

.dasboarbody--mainhead h5 {
  position: relative;
  margin: 0;
  top: 12px;
}

.heading_image12 {
  float: right;
}

.dasboarbody--mainhead::before {
  content: "";
  background: var(--secondary-color);
  border-radius: 0px 10px 10px 0px;
  width: 6px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 5px;
}

.dashboard-viewwrap {
  width: 100%;
  margin-top: 10px;
  /* float: right; */
}

.form-group {
  margin: 0 0 15px;
  width: 100%;
}

.addButton {}

.addButton .css-l0jafl.Mui-expanded {
  margin: 0 !important;
}

.form-group label {
  font-weight: 400;
  font-size: 12px;
}

.control--select .form-control {
  padding: 0;
  margin: 0;
}

.control--select .form-control .select__control {
  border: none;
  background: none;
  height: 50px;
}

.form-group .form-control {
  width: 100%;
  height: 49px;
  font-size: 14px;
  margin-top: 8px;
  border-radius: 3px;
  border: 1px solid var(--primary-color);
  background: #f4f4f4;
}

.rowgrid--viewform {
  display: flex;
  align-items: center;
}

.rowgrid--viewform .form-group {
  margin: 0 10px 30px;
}

.form-group textarea {
  height: 100px !important;
}

.rowgrid--viewform .calculate-submit {
  width: 49%;
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  border-radius: 3px;
  font-weight: 500;
  color: white;
  padding: 9px 28px;
}

.calculate-submit .btn-primary {
  width: 100%;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-20 {
  margin-top: 30px !important;
}

.mr-15 {
  margin-right: 20px;
}

.red {
  color: red;
  font-weight: 700 !important;
}

.tavle--mainwrap {
  overflow-x: auto;
}

.tavle--mainwrap thead {
  background: var(--primary-color);
  font-size: 14px;
  color: white;
}

.tavle--mainwrap thead tr th {
  font-weight: 400;
  padding: 12px 20px;
  width: fit-content;
  font-size: 12px;
}

.tavle--mainwrap tbody tr td {
  font-weight: 400;
  padding: 12px 4px;
  font-size: 12px;
}

.tavle--mainwrap tbody tr td input {
  width: 42px;
  border: 1px solid #efefef;
  border-radius: 4px;
}

.mainwrap {
  height: 100vh;
}

.carousel-container {
  flex: 2;
}

.carousel-container img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.form-container img {
  width: 32%;
}

.form-container .logo--dflex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.form-container .logo--dflex p {
  font-size: 10px;
}

.form-container .logo--dflex h5 {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.7;
}

.form-container .logo--dflex h2 {
  font-size: 21px;
  font-weight: 900;
}

.form-container {
  width: 30%;
  position: absolute;
  top: 0;
  left: 100px;
  z-index: 9;
  top: 50%;
  transform: translate(0%, -50%);
  display: flex;
  justify-content: end;
}

.form-container-change-pass {
  justify-content: left;
}

.form-box {
  background: white;
  padding: 25px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.form-box h2 {
  margin-bottom: 8px;
}

.form-container span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  padding: 10px 0 20px;
}

.form-container span input {}

.form-container .forgot--pass {
  display: flex;
  justify-content: space-between;
}

.form-container .forgot--pass p {
  color: black !important;
  padding: 15px 0 0;
  font-size: 12px;
  margin: 0;
}

.heading_login .btn-primary {
  width: 100%;
}

.form-container .forgot--pass p a {
  color: #32438e;
  font-weight: 500;
  text-decoration: none;
  font-size: 12px;
}

.heading_login {
  width: 39%;
}

.heading_login figure {
  text-align: center;
}

.heading_login img {
  margin-bottom: 10px;
}

.headerwrap--dsign {
  background: white;
  padding: 10px 20px;
}

.mainheadflefspace--between img {
  width: 20%;
}

.mainheadflefspace--between {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}


.wrapsign--back {
  background: url(../images/loginimage2.png);
  display: flex;
  align-items: center;
}

.show_password {
  position: relative;
}

.password-icon {
  position: absolute;
  top: 48px;
  right: 14px;
}

.header_table {
  text-align: center;
  font-size: 15px !important;
}

.dropdown-menu a {
  display: block;
  padding: 8px 15px;
  color: #32438e !important;
  text-decoration: none;
}

.dropdown-menu1 {
  padding: 6px 11px;
  font-weight: 400;
}

.sidebar.close .dropdown-menu1 {
  display: none;
}

.dropdown-menu1 li a {
  padding: 8px 15px;
  margin: 0 0 10px;
  color: black;
  background: #e4e9f7;
  font-size: 12px;
}

.dropdown-menu1 li a:hover {
  color: white;
}

.arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
  /* padding: 0 10px 0px; */
  color: black;
  font-size: 21px;
}

.dropdown1.open .arrow {
  transform: rotate(180deg);
}

.dropdown1 {
  display: block !important;
}

.headImg {
  width: 190px;
  /* padding: 5px; */
}

.MuiDrawer-paper {
  overflow-y: hidden !important;
}

.document-detail div img {
  border: 2px solid #d6d6d6;
  margin-top: 8px;
  border-radius: 9px;
  width: 100%;
  height: 202px;
}

.document-detail div div {
  border-radius: 9px;
  width: 76%;
  height: 194px;
}

.grid-container1 {
  display: grid;
  height: auto;
  align-content: center;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
  margin-top: 15px;
}

.grid-container1>div {
  border: solid;
  border-width: 1px;
  border-color: #d6d6d6;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
}

.grid-container1 div img {
  border-radius: 10px;
  width: 200px !important;
  height: 150px !important;
}

.dilite_icon {
  cursor: pointer;
}

.curser_pointer {
  cursor: pointer;
  color: #32438e;
}

.active_deactive {
  width: fit-content;
}


.active_deactive p {
  border-radius: 6px;
  padding: 3px 12px;
  color: white;
  font-weight: bold;
  font-size: 10px;
  margin-bottom: 0px;
}

.sidebar {
  width: 250px;
  transition: width 0.3s;
}

.sidebar.close {
  width: 78px;
}

.sidebar.open {
  width: 250px;
}

.dropdown-menu1 {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #f9f9f9;
}

.dropdown-menu1.show {
  display: block;
  margin: 0 0 0 30px;
}

.arrow {
  transition: transform 0.3s;
}

.arrow.bx-chevron-up {
  transform: rotate(180deg);
}

.arrow.bx-chevron-down {
  transform: rotate(0deg);
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  position: relative;
}

.dropdown-toggle1 {
  background: none;
  border: none;
  cursor: pointer;
}

.MuiPaper-root {
  box-shadow: none !important;
}



/* Custom styles for SweetAlert2 popup */
.custom-swal-popup .swal2-container {
  max-width: 100% !important;
}

.custom-swal-popup .swal2-popup {
  width: 80% !important;
}


.custom-swal-popup .form-row {
  display: flex;
  flex-wrap: wrap;
}

.custom-swal-popup .form-group {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  padding: 10px;
  color: black;
}

.custom-swal-popup .form-row .form-group:last-child {
  margin-right: 0;
}

.custom-swal-popup .swal2-input {
  width: 90% !important;
  box-sizing: border-box;
}

/* styles.css or your CSS file */
.my-custom-popup {
  background-color: #f7f7f7;
  border-radius: 10px;
}

.my-custom-popup .swal2-title {
  color: #333;
  font-size: 18px;
}

.my-custom-popup .swal2-html-container {
  font-size: 14px;
  color: #555;
}

.my-custom-popup .swal2-confirm {
  background-color: #32438e;
  color: white;
}

.details-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.detail-item {
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  font-size: 12px;
}

.custom-swal-confirm-button {
  background-color: #32438e;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.custom-swal-confirm-button:hover {
  background-color: #26337d;
}

.noteDiv {
  right: 30px;
  position: absolute;
  top: -2px;
}

.noteDiv p {
  margin-top: 15px;
}

.custom-swal-confirm-button {
  background-color: #32438e;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.custom-swal-confirm-button:hover {
  background-color: #26337d;
}

.upload {
  margin-left: 20px;
}


.close .nav-link .icon {
  min-width: 60px;
}

.uppercase-header {
  text-transform: capitalize;
}

/* Chat Page */

.card {
  margin-bottom: 20px !important;
  background: #fff;
  transition: .5s;
  border: 0;
  margin-bottom: 30px;
  border-radius: .55rem;
  position: relative;
  width: 100%;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
}

.chat-app .ticket--username {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #32438e;
  padding: 0 0 20px;
}

.chat-app .people-list {
  width: 280px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 20px;
  z-index: 7
}

.chat-app .chat {}

.people-list {
  -moz-transition: .5s;
  -o-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s
}

.people-list .chat-list li {
  padding: 10px 15px;
  list-style: none;
  border-radius: 3px
}

.people-list .chat-list li:hover {
  background: #efefef;
  cursor: pointer
}

.people-list .chat-list li.active {
  background: #efefef
}

.people-list .chat-list li .name {
  font-size: 15px
}

.people-list .chat-list img {
  width: 45px;
  border-radius: 50%
}

.people-list img {
  float: left;
  border-radius: 50%
}

.people-list .about {
  float: left;
  padding-left: 8px
}

.people-list .status {
  color: #999;
  font-size: 13px
}

.chat .chat-header {
  padding: 15px 20px;
  border-bottom: 2px solid #f4f7f6
}

.chat .chat-header img {
  float: left;
  border-radius: 40px;
  width: 40px
}

.chat .chat-header .chat-about {
  float: left;
  padding-left: 10px
}

.chat .chat-history {
  padding: 40px 20px 30px;
  border-bottom: 2px solid #fff;
  overflow-y: scroll;
  max-height: 480px;
}

.chat .chat-history ul {
  padding: 0
}

.chat .chat-history ul li {
  list-style: none;
  margin-bottom: 30px
}

.chat .chat-history ul li:last-child {
  margin-bottom: 0px
}

.text-right {
  text-align: end;
}

.message-dataleft {
  justify-content: flex-start !important;
}

.chat .chat-history .message-data {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}

.chat .chat-history .message-data label {
  display: flex;
  justify-content: end;
  margin: 4px 0;
}

.chat .chat-history .message-data p {
  background: var(--primary-color);
  color: white;
  width: 42px;
  margin: 0;
  height: 42px;
  display: flex;
  border-radius: 60px;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  text-transform: capitalize;
  font-weight: 400;
}

.chat .chat-history .message-data img {
  border-radius: 40px;
  width: 40px
}

.chat .chat-history .message-data-time {
  color: #434651;
  padding-left: 6px
}

.chat .chat-history .message {
  color: #444;
  padding: 18px 20px;
  line-height: 29px;
  font-size: 16px;
  border-radius: 7px;
  display: inline-block;
  width: 42%;
  position: relative
}

.chat .chat-history .message:after {
  bottom: 100%;
  left: 7%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -29px;
}

.chat .chat-history .my-message {
  background: #efefef
}

.chat .chat-history .my-message:after {
  bottom: 100%;
  left: 30px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #efefef;
  border-width: 10px;
  margin-left: -10px
}

.chat .chat-history .other-message {
  background: #e8f1f3;
  text-align: right
}

.chat .chat-history .other-message:after {
  border-bottom-color: #e8f1f3;
  left: 93%
}

.input-group input {
  width: 80% !important;
  margin: 0 !important;
}

.chat .chat-message {
  padding: 20px;
}

.input-group {
  position: relative;
}

.image-upload img {
  width: 23px;
}

.input-group-prepend {
  display: flex;
  align-items: center;
  position: absolute;
  gap: 10px;
  right: 9px;
  z-index: 999;
  bottom: 10px;
}

.input-group-text {
  border: none;
  background: var(--primary-color);
  border-radius: 0;
  color: #ffffff;
  height: 50px;
  padding: 0 18px;
}

.online,
.offline,
.me {
  margin-right: 2px;
  font-size: 8px;
  vertical-align: middle
}

.online {
  color: #86c541
}

.input-group-prepend .file-input {}

.float-right {
  float: right
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0
}

@media only screen and (max-width: 767px) {
  .chat-app .people-list {
    height: 465px;
    width: 100%;
    overflow-x: auto;
    background: #fff;
    left: -400px;
    display: none
  }

  .chat-app .people-list.open {
    left: 0
  }

  .chat-app .chat {
    margin: 0
  }

  .chat-app .chat .chat-header {
    border-radius: 0.55rem 0.55rem 0 0
  }

  .chat-app .chat-history {
    height: 300px;
    overflow-x: auto
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .chat-app .chat-list {
    height: 650px;
    overflow-x: auto
  }

  .chat-app .chat-history {
    height: 600px;
    overflow-x: auto
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
  .chat-app .chat-list {
    height: 480px;
    overflow-x: auto
  }

  .chat-app .chat-history {
    height: calc(100vh - 350px);
    overflow-x: auto
  }
}

.image-upload>input {
  display: none;
}

.ticketgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 43%;
}

.gallery--image {
  display: flex;
  grid-gap: 14px;
  flex-wrap: wrap;
  justify-content: end;
}

.gallery--image .item {}

.gallery--image img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

.gallery .item.wide {
  grid-column: span 3;
}

.with--content {
  width: fit-content !important;
}

.pdf--selecthieght img {
  width: 30px;
}

.close .nav-link .icon {
  min-width: 35px;
}

.popup-wrapper .popup-details-container {
  display: flex;
  flex-direction: column;
  gap: 0px;
  font-size: 16px;
}

.popup-details-section {
  padding: 10px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;

}

.popup-details-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.popup-detail-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  font-size: 0.9em;
  box-sizing: border-box;
}

.popup-detail-item span {
  margin-top: 5px;
  text-transform: capitalize;
}

.popup-details-section h3 {
  background-color: #32438e;
  padding: 10px;
  border-radius: 5px;
  font-size: 1.2em;
  margin-bottom: 10px;
  color: white;
}

.tabs {
  display: flex;
  gap: 1rem;
  margin: 3rem 0 0;
}

.tabs1 {
  display: flex;
  gap: 1rem;
  /* margin: 30px 0 0; */
}

.tab {
  padding: 0.5rem 1rem;
  cursor: pointer;
  background: #f0f0f0;
  border: none;
  border-radius: 4px;
}

.tab.active {
  background: var(--primary-color);
  color: white;
}


.lawyer_card {
  margin-bottom: 0px;
  padding: 0 10px;
}

.lawyer_card .col-md-3 {
  padding: 7px;
  margin: 0;
}

.lawyer_card .col-md-3:nth-child(1) .crm_card {
  background-color: #ffdede;
}

.lawyer_card .col-md-3:nth-child(2) .crm_card {
  background-color: var(--primary-color);
  position: relative;
  margin: 10px 0 0 0;
  padding: 14px;
}

.lawyer_card .col-md-3:nth-child(3) .crm_card {
  background-color: #ccffe1;
}

.lawyer_card .col-md-3:nth-child(4) .crm_card {
  background-color: #ccd8ff;
}

.lawyer_card .col-md-3:nth-child(5) .crm_card {
  background-color: #cce1ff;
}

.lawyer_card .col-md-3:nth-child(6) .crm_card {
  background-color: #e1ffcc;
}

.lawyer_card .col-md-3:nth-child(7) .crm_card {
  background-color: #f8ccff;
}

.lawyer_card .col-md-3:nth-child(8) .crm_card {
  background-color: #ffdede;
}

.lawyer_card .col-md-3:nth-child(2) .crm_card_flex::before {
  background: transparent;
}

.lawyer_card .col-md-3:nth-child(3) .crm_card_flex::before {
  background: rgb(255, 195, 39);
}

.lawyer_card .col-md-3:nth-child(5) .crm_card_flex::before {
  background: #ff3796;
}

.lawyer_card .col-md-3:nth-child(5) .crm_card_flex::before {
  background: #ff3796;
}

.lawyer_card .col-md-3:nth-child(4) .crm_card_flex::before {
  background: rgb(245, 133, 97);
}

.lawyer_card .col-md-3:nth-child(4) .crm_card_flex figure {
  background: rgb(245, 133, 97);
}

.lawyer_card .col-md-3:nth-child(4) .crm_card_flex figure {
  background: rgb(245, 133, 97);
}

.lawyer_card .col-md-3:nth-child(3) .crm_card_flex figure {
  background: rgb(255, 195, 39);
}

.lawyer_card .col-md-3:nth-child(2) .crm_card_flex figure i {
  font-size: 24px;
}

.lawyer_card .col-md-3:nth-child(2) .crm_card_flex figure {
  border: 1px solid white;
  width: fit-content;
  margin: 0 auto;
  background: var(--secondary-color);
  display: block;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crm_card {
  border-radius: 5px;
  background: rgb(255, 255, 255);
  box-shadow: none;
  padding: 10px 10px 10px;
  overflow: hidden;
  /* width: 182px; */
}

.crm_card .crm_card_flex {
  margin: 2px;
  position: relative;
}

.crm_card .crm_card_flex figure {
  display: flex;
  margin: 0px;
  background: rgb(70, 135, 255);
  border-radius: 10px;
  padding: 10px;
}

.crm_card .crm_card_flex figure img {
  width: 20px;
}

.crm_card .crm_card_flex .card_crmtext {
  justify-content: space-between;
  width: -webkit-fill-available;
  font-size: 16px;
}

.crm_card .crm_card_flex .card_crmtext h5 {
  margin: 8px 0 0;
  /* font-weight: 700; */
  font-size: 15px;
  line-height: 27px;
  color: white;
  padding: 5px 0px 0 0;
  text-align: center;
}


.myCard {

  margin: 40px 0 30px 0;

  border-radius: 7px;

  border: 1px solid #eee;
}

.myCard .cardHeader {

  align-items: center;

  display: flex;

  border-radius: 7px 7px 0 0;

  padding: 8px 15px;

  background: var(--primary-color);

  justify-content: space-between;
}

.myCard .cardHeader h5 {

  color: #fff;
}

.myCard .cardHeader .rytContent {}

.myCard .cardBody {

  overflow: auto;
  flex-wrap: wrap;
  position: relative;
  padding: 20px 15px;
  display: flex;
  gap: 14px;
}

.myUl {
  border-radius: 8px;
  flex-wrap: wrap;
  width: 32.2%;
  background: #f8f9fa;
  display: flex;
  margin: 0;
  padding: 15px;
}

.myUl li {
  width: 100%;
}

.myUl li .ulRow {

  padding: 10px 0px;

  border-bottom: 1px dashed #7a010396;
}

.myUl li label {

  font-weight: 500;

  color: var(--primary-color);
}

.myUl li span {

  margin-left: 10px;
}

.myUl li strong {}

.myUl li a {}

.row1 {
  margin-top: 20px;
}

.recharts-default-legend {
  margin: 27px !important;
}

.addButton {
  min-height: 39px !important;
}

/* / Dashboard / */
/* new css start */

.card,
.card-light {
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 0px;
  -webkit-box-shadow: 2px 6px 15px 0 rgba(69, 65, 78, 0.1);
  -moz-box-shadow: 2px 6px 15px 0 rgba(69, 65, 78, 0.1);
  box-shadow: 2px -4px 28px 0 rgb(255 255 255 / 13%);
  border: 0;
}

.card-stats .card-body {
  padding: 10px !important;
  border: 1px solid #e3e3e3;
  border-radius: 7px;
}

.card-stats .col-icon {
  width: 50px;
  height: 50px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 15px;
}

.card-stats .icon-big.icon-primary {
  background: #1572e8;
}

.card-stats .icon-big i {
  font-size: 18px !important;
}

.card-stats .icon-big {
  width: 100%;
  height: 100%;
  font-size: 2.2em;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.col-icon i {
  color: #fff !important;
  font-size: 0.8em;
}

.card-category {
  margin-top: 8px;
  font-size: 13px;
  color: #8d9498;
  margin-bottom: 0;
  word-break: normal;
}

.card-title {
  margin: 0;
  color: #2a2f5b;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.homedashboardright {
  background: none;
}

.card-stats .icon-big.icon-info {
  background: #48abf7;
}

.card-stats .icon-big.icon-success {
  background: #31ce36;
}

.card-stats .icon-big.icon-secondary {
  background: #6861ce;
}

.card .card-header,
.card-light .card-header {
  padding: 1rem 1.25rem;
  background-color: transparent;
  border-bottom: 1px solid #ebecec !important;
}

.card .card-head-row,
.card-light .card-head-row {
  display: flex;
  align-items: center;
}

.card .card-head-row .card-tools,
.card-light .card-head-row .card-tools {
  margin-left: auto;
  float: right;
  padding-left: 15px;
}

.btn-round {
  border-radius: 100px !important;
}

.btn-label-success {
  background: rgba(49, 206, 54, 0.1);
  color: #31ce36 !important;
  border-color: transparent;
}

.btn-label-info {
  background: rgba(72, 171, 247, 0.1);
  color: #48abf7 !important;
  border-color: transparent;
}

.card-primary {
  background: #1572e8 !important;
}

.btn-label-light:focus,
.btn-label-light:hover {
  background: #fff;
  color: #2a2f5b;
  opacity: 1;
}

.card-black .card-category,
.card-black .card-title,
.card-black label,
.card-danger .card-category,
.card-danger .card-title,
.card-danger label,
.card-dark .card-category,
.card-dark .card-title,
.card-dark label,
.card-info .card-category,
.card-info .card-title,
.card-info label,
.card-primary .card-category,
.card-primary .card-title,
.card-primary label,
.card-secondary .card-category,
.card-secondary .card-title,
.card-success .card-category,
.card-success .card-title,
.card-success label,
.card-warning .card-category,
.card-warning .card-title,
.card-warning label {
  color: #fff !important;
}

.btn-label-light {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.card-body h2 {
  color: white;
}

.classactive {
  color: black !important;
}

.percentage {
  font-size: 32px;
  font-weight: 400 !important;
}

.html-legend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  list-style: none;
  cursor: pointer;
  padding-left: 0;
  text-align: center;
  margin-top: 1rem;
}

.html-legend li {
  justify-content: center;
  align-items: center;
  display: flex;
  vertical-align: middle;
  padding: 0 5px;
  margin-right: 5px;
  margin-bottom: 6px;
  color: #8d9498;
  font-size: 12px;
}

.html-legend li span {
  border-radius: 15px;
  display: inline-block;
  height: 15px;
  margin-right: 10px;
  width: 15px;
  vertical-align: top;
}

.card-list .item-list {
  display: flex;
  flex-direction: row;
  padding: 10px 0;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
  margin: 0 0 8px;
}

.avatar1 {
  width: 3.2rem;
  height: 3.2rem;
}

.avatar-img1 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-list .item-list .info-user {
  flex: 1;
}

.card-list .item-list .info-user .username,
.card-list .item-list .info-user a.username {
  font-size: 16px;
  margin-bottom: 0px;
  font-weight: 500;
  border: none;
  padding: 0;
}

.card-list .item-list .info-user .status a {
  font-size: 12px;
  color: #32438e;
  text-decoration: none;
}

.btn-link.btn-danger {
  color: #f25961 !important;
  padding: 0;
  background-color: unset;
}

.table-responsive .table .thead-light th {
  background-color: #f6f9fc !important;
  color: #8898aa !important;
  border-color: #ebecec !important;
}

.table-responsive .table thead th {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px !important;
  border-bottom-width: 1px;
  font-weight: 500;
}

.table-responsive .table>tbody>tr>td,
.table>tbody>tr>th {
  padding: 16px 24px !important;
  font-weight: 400;
}

.table-responsive .table td,
.table th {
  font-size: 13px;
  border-top-width: 0;
  border-bottom: 1px solid;
  border-color: #ebedf2 !important;
  vertical-align: middle !important;
}

.badge-success {
  background-color: #31ce36;
}

.badge {
  border-radius: 5px;
  margin-left: auto;
  line-height: 1;
  padding: 4px 7px;
  vertical-align: middle;
  font-weight: 400;
  font-size: 11px;
  border: 1px solid #ddd;
  height: fit-content !important;
}

.username {
  font-size: 12px;
  padding: 7px 0 10px;
  /* margin: 0 0 6px; */
  font-weight: 500;
  border-bottom: 1px solid #ffc904;
  opacity: 0.7;
}

.table--eyewrapflex {
  gap: 10px;
  display: flex;
}

.margin_top {
  margin-top: -50px !important;
  padding: 5px 15px !important;
  height: 29px;
}

.uploadtwo {
  display: flex;
}

/* ADD ON CSS  */

.btn-position{
     position: relative;
     bottom: 35px;
}