@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #0060AE;
  --body-bg: #F0F2F5;
  --text-color-heading: #172b4c;
  --text-color-body: #333333;
  --white: #ffffff;
  --color-light: #b5b5c3;
  --danger-color: #ec0101;
  --menu-icons: #2f415e;
  --border-menu: #e6edef;
  --label-color: #59667A;
  --table-head-bg: #E9EEFE;
  --view-button: #0BA712;
  --edit-button: #005BAA;
  --delete-button: #F64E60;
  --download-button: #E87240;
  --pending-text: #EC0101;
  --posted-text: #E91F63;
  --reverse-text: #59667A;
  --table-row-clr: #F6F8FE;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  font-weight: normal;
  background: var(--body-bg);
  color: var(--text-color-body);
}

#sidebar {
  height: 100vh;
  width: 290px;
  /* background: var(--primary-color); */
  color: var(--white);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
}

.main-bar{
  background: var(--primary-color);
  margin: 10px;
  border-radius: 12px;
  padding: 10px;
}

#sidebar.active {
  margin-left: -290px;
}

#sidebar ul li {
  padding: 0px 18px 0px 18px;
}

#sidebar ul li {
  font-size: 16px;
}

#sidebar ul li>ul {
  margin-left: 10px;
}

#sidebar ul li>ul li {
  font-size: 14px;
}

#sidebar ul li a {
  padding: 10px 0;
  display: block;
  color: var(--white);
}

#sidebar ul li a span {
  color: var(--white);
  margin-left: 8px;
}

#sidebar ul li a:hover {
  color: var(--text-white-body);
}

#sidebar .sidebar-menu ul li.active>a {
  background: var(--white);
  color: var(--primary-color) !important;
  border-radius: 8px;
  padding-left: 8px;
}

#sidebar .sidebar-menu ul li.active {
  padding-left: 10px;
}

.dropdown-toggle::after
 {
    margin-left: 3.5rem;
 }

 .dropdown-menu {
    --bs-dropdown-min-width: 13.5rem;
 }

.sidebar-menu {
    height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.side-menu li.active a svg path {
  fill: var(--primary-color);
}

.side-menu li.active a span {
  color: var(--primary-color) !important;
}

a {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: var(--primary-color);
  text-decoration: none;
}

.btn-logout {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-logout:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

#content {
  width: 100%;
  padding: 0;
  margin-left: 294px;
  min-height: 100vh;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}


@media (max-width: 991.98px) {
  #sidebar {
    margin-left: -290px;
  }

  #sidebar.active {
    margin-left: 0;
    /* position: absolute; */
    z-index: 3;
  }

  .top-bar {
    height: 40px !important;
  }

  .top-bar .top-bar-icon {
    display: none;
  }
}

.img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#sidebar .custom-menu {
  display: inline-block;
  position: absolute;
  /* top: 10px; */
  right: -14px;
  margin-right: -28px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  #sidebar .custom-menu {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

#sidebar .custom-menu .btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
}

#sidebar .custom-menu .btn i {
  margin-right: -40px;
  font-size: 14px;
}

#sidebar .custom-menu .btn.btn-primary {
  background: transparent;
  border-color: transparent;
}

#sidebar .custom-menu .btn.btn-primary:after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #3445b4;
  border-radius: 10px;
}

#sidebar .custom-menu .btn.btn-primary:hover,
#sidebar .custom-menu .btn.btn-primary:focus {
  background: transparent !important;
  border-color: transparent !important;
}

.card-content {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cccccc;
}

.card-content svg {
  position: relative;
  top: -46px;
}

.card-p {
  border-radius: 14px;
  padding: 18px;
}

.card-p p {
  font-weight: 400;
  font-size: 16px;
  color: #7B809A;
}

.graph-card {
  width: 100%;
  /* height: 300px; */
  padding: 16px;
  border-radius: 14px;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-color-type: var(--text-color-body);
  --bs-table-bg-type: var(--table-row-clr);
}

.table-striped th,
.table-striped td {
  border: none !important;
}

.table-striped thead tr th {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 500;
}

.heading-5 {
  color: var(--text-color-body);
  font-weight: 600;
  font-size: 18px;
}

.table-striped tr {
  white-space: nowrap;
}

.reminder {
  color: var(--danger-color) !important;
  cursor: pointer;
}

.list-group-item {
  border: 1px solid #E6EDEF;
  border-radius: 12px;
}

.recent-list {
  border: 1px solid #E6EDEF;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 10px;
}

.btn-primary {
  background-color: var(--primary-color);
}

.tables-responsive {
  width: 74vw;
}

/* js Logics Css */

#content.no-margin {
  margin-left: 0;
}

#content.no-margin .tables-responsive {
  width: 100%;
}

/* js Logics Css */

@media(max-width:576px){
#content{
  margin-left: 0;
}
}

@media(max-width:991px){
#content{
  margin-left: 0;
}
}


@media(min-width:1805px) {
  .tables-responsive {
    width: 100% !important;
  }
}

.view-btn {
  background-color: var(--white);
  color: var(--view-button);
  border: 1px solid #E6EDEF;
}

.view-btn:hover {
  background-color: var(--white);
  color: var(--view-button);
  border: 1px solid #E6EDEF;
}

.edit-btn {
  background-color: var(--white);
  color: var(--edit-button);
  border: 1px solid #E6EDEF;
}

.edit-btn:hover {
  background-color: var(--white);
  color: var(--edit-button);
  border: 1px solid #E6EDEF;
}

.delete-btn {
  background-color: var(--white);
  color: var(--delete-button);
  border: 1px solid #E6EDEF;
}

.download-btn {
  background-color: var(--white);
  color: var(--download-button);
  border: 1px solid #E6EDEF;
}

.reverse-btn{
  background-color: var(--white);
  color: var(--reverse-text);
  border: 1px solid #E6EDEF;
}

.reverse-btn:hover{
  background-color: var(--white);
  color: var(--reverse-text);
  border: 1px solid #E6EDEF;
}

.download-btn:hover {
  background-color: var(--white);
  color: var(--download-button);
  border: 1px solid #E6EDEF;
}

.delete-btn:hover {
  background-color: var(--white);
  color: var(--delete-button);
  border: 1px solid #E6EDEF;
}

.back-btn {
  background-color: #F6F8FE;
  border: none;
  color: var(--primary-color);
}

.back-btn:hover {
  background-color: #F6F8FE;
  border: none;
  color: var(--primary-color);
}

.next-btn {
  background-color: var(--primary-color);
  border: none;
  color: var(--white);
}

.next-btn:hover {
  background-color: var(--primary-color);
  border: none;
  color: var(--white);
}

.modal-header {
  background-color: #E3EAFF !important;
}

.primary-heading {
  color: var(--primary-color);
  font-weight: 500;
}

.form-select {
  cursor: pointer;
}

.form-select:focus {
  border-color: #E6EDEF;
  outline: 0;
  box-shadow: none;
}

input::placeholder {
  color: #999999 !important;
  /* Change to your desired color */
  font-size: 14px
}

.btn:first-child:active,
:not(.btn-check)+.btn:active {
  background-color: var(--white);
  border-color: #E6EDEF;
}

.cancel-btn {
  background-color: #999999;
  color: var(--white);
}

.cancel-btn:hover {
  background-color: #999999;
  color: var(--white);
}

.recycle-btn {
  background-color: var(--danger-color);
  color: var(--white);
}

.recycle-btn:hover {
  background-color: var(--danger-color);
  color: var(--white);
}

.pdf-icon-div {
  background-color: var(--white);
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color);
  padding: 10px 20px 10px 20px;
  border-radius: 6px;
}
.accordion-button:not(.collapsed) {
  color: var(--text-color-body);
  background-color: var(--white);
}
.checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #999999;
}

.approved-clr {
  color: var(--view-button) !important;
}

.pending-clr {
  color: var(--pending-text) !important;
}

.reverse-clr {
  color: var(--reverse-text) !important;
}

.posted-clr {
  color: var(--posted-text) !important;
}

.export-btn {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-weight: 500;
}

.export-btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-weight: 500;
}

.nav-pills .nav-link {
  color: var(--text-color-body);
  font-weight: 500;
}

.nav-pills .nav-link svg {
  fill: var(--text-color-body);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  background-color: var(--white);
  border-radius: 0px;
  font-weight: 600;
}

.nav-pills .nav-link.active svg {
  fill: var(--primary-color);
}

.nav-link:focus-visible {
  outline: 0;
  box-shadow: none;
}

.small-receipt-content {
  color: #59667A;
  font-weight: 600;
}

.custom-dropdown li a {
  color: var(--text-color-body) !important;
  border-bottom: ipx solid var(--primary-color);
}

.custom-dropdown li:hover {
  border-bottom: 1px solid #999999;
}

.login-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  background-color: #fff;
  /* border-radius: 8px; */
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 90vh;
  width: 80vw;
}

.left-div {
  background: linear-gradient(to bottom, #0073cf, #005bb5);
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.left-div img {
  max-width: 180px;
  margin-bottom: 20px;
}

.right-div {
  padding: 40px 98px;
}

@media (max-width: 767.98px) {
  .left-div {
    border-radius: 0;
    display: none !important;
  }

  .right-div {
    padding: 40px 40px;
  }
}
.tables-responsive td {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.action-col {
    min-width:300px !important;
    max-width:480px !important;
}

.edit-btn .btn.disabled, .btn:disabled, fieldset:disabled .btn {
    color: #797979;
    pointer-events: none;
    background-color: #C8C6C6;
    border-color: #e1e1e1;
}
.edit-btn.btn.disabled svg path, .edit-btn.btn:disabled svg path,
fieldset:disabled .edit-btn.btn svg path {
    fill: #797979 !important; /* match the text color */
}
.profile-name-desig{
    display:flex;
    flex-direction:column;
    justify-content:end;
}
.profile-name-desig h5 {
  font-size: 18px;
  font-weight: 600;
  color: #172B4C;
}