/* Google Font Import - Poppins */
@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;
}

:root {
  /* ===== Colors ===== */
  /* --body-color: #e4e9f7; */
  --body-color: #f9f3ea;
  --sidebar-color: #fff;
  /* --primary-color: #695cfe; */
  --primary-color: #ff9900;
  --primary-color-dark: #ff9900;
  --primary-color-light: #f6f5ff;
  --secondary-color: #ff5507;
  --secondary-color-dark: #e04b07;
  --toggle-color: #ddd;
  --text-color: #707070;
  --nav-bg-color: #ffdba6;
  --error-color: red;
  --table-head-background: #ffe4bb;

    --input-color: gray;
  --input-background: #fff9f0;
  --input-border: var(--primary-color);
  /*--input-color: gray;*/
  /*--input-background: #eeeeee;*/
  /*--input-border: #eeeeee;*/
  --input-placeholder: #CBD1DC;
  --input-label-color: gray;
  --group-color: var(--input-color);
  --group-border: var(--input-border);
  --group-background: #E6FFE6;
  --group-color-focus: #fff;
  --group-border-focus: var(--primary-color);

  /* ======Shodow ======*/
  --first-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);

  /* ====== Transition ====== */
  --tran-03: all 0.2s ease;
  --tran-03: all 0.3s ease;
  --tran-04: all 0.4s ease;
  --tran-05: all 0.5s ease;
}

body {
  min-height: 100vh;
  background-color: var(--body-color) !important;
  transition: var(--tran-05);
}

a {
  text-decoration: none;
}

::selection {
  background-color: var(--primary-color);
  color: #fff;
}

body.dark {
  --body-color: #18191a;
  --sidebar-color: #242526;
  --primary-color: #3a3b3c;
  --primary-color-light: #3a3b3c;
  --toggle-color: #fff;
  --text-color: #ccc;
}

.heading {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 500;
  line-height: normal;
}

.admin-logo {
  width: 40px;
  border-radius: 100%;
}

.admin-logo-div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.input-groups {
  position: relative;
}

.tom-search-select {
  height: 100%;
  position: relative;
}

.input-field {
  width: 100%;
  height: 45px;
  border: none;
  padding: 10px;
  background-color: var(--input-background);
  color: var(--input-color);
  outline: none;
  font-size: 15px;
  margin-bottom: 20px;
  border: 1px solid var(--input-border);
  transition: .5s !important;
  border-radius: 5px !important;
  transition: 0.3s;
}

input:focus {
  border: 2px solid var(--primary-color);
}

.input-label {
  display: block;
  color: var(--input-label-color);
  padding-bottom: 7px;
  font-size: 15px;
  padding-left: 5px;
  margin: 0 !important;
  font-weight: normal !important;
}

.input-error {
  border: 2px solid var(--error-color);
}

.error-message {
  position: absolute;
  left: 0;
  bottom: 1px;
  font-size: 13px;
  color: var(--error-color);
}

.error-messages {
  display: none;
  position: absolute;
  font-size: 12px;
  margin-top: 5px;
  bottom: 0;
  color: var(--error-color);
}

.input-groups.invalid .error-messages {
  display: block;
  /* Show when .invalid is on the parent .input-group */
}

.tom-search-select.invalid .error-messages {
  display: block;
  /* Show when .invalid is on the parent .input-group */
}

.invalid .input-field {
  border-color: red;
  transition: .5s !important;
  background-color: #ffebeb;
}

.invalid .ts-control {
  border-color: red !important;
  transition: .5s !important;
  background-color: #ffebeb !important;
}

/* .input-group.invalid .error-messages {
  display: block;
  color: red;
  font-size: 12px;
  margin-top: 5px;
} */

.button-center {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.button-1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 45px;
  border: none;
  color: #FFFFFF;
  background-color: var(--primary-color);
  border-radius: 6px 3px 6px 3px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.button-1:hover {
  background-color: var(--primary-color-dark);
}

.pop-up-button-div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.button-2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: auto;
  height: auto;
  padding: 10px 20px;
  border: none;
  color: #FFFFFF;
  background-color: var(--primary-color);
  border-radius: 6px 2px 6px 2px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.button-2:hover {
  background-color: var(--primary-color-dark);
}

.button-3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: auto;
  height: auto;
  padding: 10px 20px;
  border: none;
  color: #FFFFFF;
  background-color: var(--secondary-color);
  border-radius: 2px 6px 2px 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.button-3:hover {
  background-color: var(--secondary-color-dark);
}

.box-container {
  background-color: #FFFFFF;
  border-radius: 5px;
  box-shadow: var(--first-shadow);
  padding: 25px !important;
  margin: 10px;
}

.box-container-sm {
  background-color: #FFFFFF;
  border-radius: 5px;
  box-shadow: var(--first-shadow);
  padding: 15px 20px !important;
}

.box-container-2 {
  background-color: #FFFFFF;
  border-radius: 5px;
  box-shadow: var(--first-shadow);
  padding: 30px !important;
}

.para {
  margin-bottom: 10px;
  line-height: normal;
}

.box-shadow {
  box-shadow: var(--first-shadow);
}

.password-div {
  position: relative;
}

.password-div i {
  position: absolute;
  font-size: 18px;
  right: 10px;
  top: 13.5px;
  color: gray;
  cursor: pointer;
}

.export-div a {
  text-decoration: none;
}

/* File input Style */
.drop-container {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px 0 20px 0;
  height: 200px;
  padding: 20px;
  border-radius: 5px;
  border: 2px dashed #ccc;
  color: #444;
  cursor: pointer;
  transition: background .2s ease-in-out, border .2s ease-in-out;
}

.drop-container:hover {
  background: #eee;
  border-color: #111;
}

.drop-container:hover .drop-title {
  color: #222;
}

.drop-title {
  color: gray;
  font-size: 15px;
  /* font-weight: bold; */
  text-align: center;
  transition: color .2s ease-in-out;
}

.form-control-file {
  width: 350px;
  max-width: 100%;
  color: #444;
  padding: 5px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.form-control-file::file-selector-button {
  margin-right: 20px;
  border: none;
  background: var(--primary-color);
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease-in-out;
}

.form-control-file::file-selector-button:hover {
  box-shadow: inset 0px 0px 15px 12px rgba(0, 0, 0, 0.1);
}

/* Center */
.center {
  text-align: center;
}

/* Center Div */
.center-div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.centered-div {
  width: 28vw;
}

/* Tav view */
@media only screen and (max-width: 900px) {
  .centered-div {
    width: 60vw;
  }
}

/* Mobile view */
@media only screen and (max-width: 450px) {
  .centered-div {
    width: 100vw;
  }
}

/* Table */
.th-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.table-btn {
  border: none;
  background: none;
}

.calculate {
  color: #ed143d;
}

.bill {
  color: blue;
}

.view {
  color: blue;
}

.edit {
  color: orange;
}

.apply {
  color: blue;
  font-size: 1.1rem;
}

.download {
  /* color: #ed143d; */
  color: #a52a2a;
}

.print {
  /* color: #343a40; */
  color: #008b8b;
}

.delete {
  color: red;

}

table {
  border-collapse: collapse;
  /* Collapse the borders */
  border-radius: 7px;
  /* Set border-radius for the table */
  overflow: hidden;
  /* Ensure the border-radius is applied properly */
  width: 100%;
  /* Set table width to 100% */
  border-bottom: none;
  /* Hide the bottom border */
  border-bottom: 2px solid ghostwhite;
}

th {
  border: none;
  font-size: 14px;
}

.date-th {
  min-width: 110px;
}

td {
  border: none;
  font-size: 14px;
  color: var(--text-color) !important;
}

tr {
  border: none;
}

.th {
  background-color: var(--primary-color) !important;
  color: white !important;
  font-weight: 600 !important;
  text-align: center !important;

}

tr:nth-child(even) td {
  background-color: #fff6e7;
  /* Set background color for odd rows */
}

.dt-column-order {
  color: black;
}

.dt-length label {
  display: none;
}

div.dt-container.dt-empty-footer tbody>tr:last-child>* {
  border-bottom: none !important;
}

div.dt-container.dt-empty-footer .dt-scroll-body {
  border-bottom: none !important;
}

div.dt-container .dt-search input {
  padding: 7px 10px;
  font-size: 14px;
  font-family: inherit;
  border-radius: 0 0 6px 0;
  -webkit-appearance: none;
  color: var(--input-color);
  border: 1px solid var(--input-border);
  background: var(--input-background);
  transition: border 0.3s ease;
  margin: 0;
}

div.dt-container .dt-search input:focus {
  border: none;
}

.dt-search label {
  text-align: center;
  padding: 7px 10px;
  border-radius: 6px 0 0 0;
  font-size: 14px;
  color: var(--group-color);
  background: var(--group-background);
  border: 1px solid var(--group-border);
  transition: background 0.3s ease, border 0.3s ease, color 0.3s ease;
}

table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td {
  border-bottom: none;
}

.dt-layout-row {
  padding-bottom: 5px;
}

div.dt-container .dt-input {
  padding: 7px 10px;
  font-size: 14px;
  font-family: inherit;
  border-radius: 6px 0 6px 0;
  color: var(--input-color);
  border: 1px solid var(--input-border);
  background: var(--input-background);
  transition: border 0.3s ease;
}

div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover {
  border: 1px solid var(--primary-color) !important;
  background-color: var(--group-background);
  border-radius: 6px 0 6px 0;
}

div.dt-container .dt-length,
div.dt-container .dt-search,
div.dt-container .dt-info,
div.dt-container .dt-processing,
div.dt-container .dt-paging {
  color: var(--text-color);
}

/* Card Style */
.tms-card {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  margin: 0;
  width: 100% !important;
  height: 100%;
}

.tms-card-head {
  display: flex;
  flex-direction: row;
  padding: 20px;
  gap: 10px;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1.2rem;
}

.tms-card-body {
  padding: 0 20px 20px 20px;
}

/* Number card Style */
.num-card {
  padding: 0 35px !important;
}

.num-card .card-row-d-r {
  display: flex;
  flex-direction: column;
}

.num-card .card-col-d-r {
  width: 100%;
}


/*common*/
.p-0 {
  padding: 0;
}

.p-20 {
  padding: 20px !important;
}

.p-r-0 {
  padding-right: 0;
}

.c-p-r-0 {
  padding-right: 0;
}

.p-l-0 {
  padding-left: 0;
}

.p-l-40 {
  padding-left: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-20 {
  padding: 20px;
}

.p-t-15 {
  padding-top: 15px;
}

.p-b-0 {
  padding-bottom: 0 !important;
}

.p-b-1 {
  padding-bottom: 1px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-r-l-15 {
  padding-right: 15px;
  padding-left: 15px;
}

.m-10 {
  margin: 10px;
}

.m-20 {
  margin: 10px;
}

.m-t-0 {
  margin-top: 0 !important;
}

.m-t-50 {
  margin-top: 45px;
}

.m-auto {
  margin: auto;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.m-t-30 {
  margin-top: 30px;
}

.m-t-100 {
  margin-top: 100px;
}

.m-t-125 {
  margin-top: 125px;
}

.m-t-145 {
  margin-top: 145px;
}

.m-l-0 {
  margin-left: 0 !important;
}

.m-r-0 {
  margin-right: 0 !important;
}

.b-20 {
  bottom: -20px;
}

.f-w-500 {
  font-weight: 500;
}

.f-w-600 {
  font-weight: 600;
}

.h-200 {
  height: 200px;
}

.t-a-l {
  text-align: left;
}

.h-auto {
  height: auto;
}

.nowrap {
  white-space: nowrap;
}

.h-center-div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.min-with-300 {
  min-width: 300px;
}

.h-center-div-c {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Loader */
.loader-block {
  position: relative;
  min-height: 200px;
}

.loader-div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 40px;
  aspect-ratio: 1.154;
  position: relative;
  background: conic-gradient(from 120deg at 50% 64%, #0000, #ff9900 1deg 120deg, #0000 121deg);
  animation: l27-0 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

.loader:before,
.loader:after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  transform-origin: 50% 66%;
  animation: l27-1 1.5s infinite;
}

.loader:after {
  --s: -1;
}

@keyframes l27-0 {

  0%,
  30% {
    transform: rotate(0)
  }

  70% {
    transform: rotate(120deg)
  }

  70.01%,
  100% {
    transform: rotate(360deg)
  }
}

@keyframes l27-1 {
  0% {
    transform: rotate(calc(var(--s, 1)*120deg)) translate(0)
  }

  30%,
  70% {
    transform: rotate(calc(var(--s, 1)*120deg)) translate(calc(var(--s, 1)*-5px), 10px)
  }

  100% {
    transform: rotate(calc(var(--s, 1)*120deg)) translate(0)
  }
}

.loader-text {
  position: relative;
  margin: 15px;
}

/* Progress loader */
.progress-loader {
  z-index: 10001;
  background-color: white;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  border-radius: 5px;
  box-shadow: var(--body-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-width: 300px;
  min-height: 200px;
}

.progress-text {
  text-align: center;
  font-weight: 500;
  color: gray;
  animation: progress-text 4s infinite ease-in-out;
  -webkit-animation: progress-text 3s infinite ease-in-out;
}

@keyframes progress-text {
  0% {
    color: gray;
  }

  50% {
    color: black;
  }

  100% {
    color: gray;
  }
}

@-webkit-keyframes progress-text {
  0% {
    color: #00b09b;
  }

  33% {
    color: #f54ea2;
  }

  66% {
    color: black;
  }

  100% {
    color: #00b09b;
  }
}

/* view style */

.info-profile-image-div {
  display: flex;
  justify-content: center;
}

.info-profile-image {
  width: 100%;
  border-radius: 5px;
  max-height: 240px;
  max-width: 240px;
}

.info-profile-image-re-upload {
  width: 100%;
  border-radius: 5px;
  max-height: 150px;
  max-width: 150px;
}

.info-title {
  margin: 10px 0;
  color: var(--primary-color);
}

.info-content {
  color: var(--text-color);
  margin: 6px 0;
  font-size: .9rem;
}


.info-heading {
  margin: 6px 0;
}

.info-heading-2 {
  display: block;
  color: gray;
  padding-bottom: 7px;
  font-size: 15px;
  padding-left: 5px;
  margin: 0 !important;
  font-weight: normal !important;
}

.info-content {
  color: var(--text-color);
  margin: 0 0 10px 0;
  font-size: .9rem;
}

.m-b-10 {
  margin-bottom: 10px;
}

.h-100 {
  height: 100%;
}

.document-view i {
  font-size: 3rem;
}

.document-view-2 i {
  font-size: 3rem;
}

.d-v-1 {
  color: #6078ea;
}

.d-v-2 {
  color: #00b09b;
}

.d-v-3 {
  color: #f54ea2;
}



.reupload-file-input__input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.reupload-file-input__label {
  cursor: pointer;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  gap: 5px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 14px;
  padding: 10px 12px;
  /* background-color: #4245a8; */
  border: 2px dashed var(--primary-color);
  /* box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25); */
  transition: background .2s ease-in-out;
}

.reupload-file-input__label:hover {
  background: var(--group-background);
}

.reupload-file-input__label svg {
  height: 16px;
  margin-right: 4px;
}

.btn-td {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-td span {
  /* background-color: var(--primary-color); */
  padding: 1px 7px;
  border-radius: 3px;
  color: white;
  text-transform: capitalize;
  text-align: center;
}

td .expired, .btn-td .expired {
  background-color: #FF0000 !important;
}

td .expires, .btn-td .expires {
  background-color: #FFA500 !important;
}

td .active, .btn-td .active {
  background-color: #008000 !important;
}

td .running, .btn-td .running {
  background-color: #008000 !important;
}

td .not-running, .btn-td .not-running {
  background-color: #FF0000 !important;
}

td .running-1, .btn-td .running-1 {
  background-color: #008000 !important;
}

td .running-2, .btn-td .running-2 {
  background-color: #FF0000 !important;
}

td .no-status, .btn-td .no-status {
  background-color: transparent !important;
  color: var(--text-color) !important;
}

td .on-duty, .btn-td .on-duty {
  background-color: #008000 !important;
}

td .employee-status, .btn-td .employee-status {
  background-color: #FF0000 !important;
}

td .other-status, .btn-td .er-status {
  background-color: #FFA500 !important;
}

/* Select Search */
.selectpicker-row button {
  top: -4px;
  color: #333;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  border: none !important;
}

.selectpicker-row .bootstrap-select .btn:focus {
  outline: none !important;
  outline: none !important;
}

.selectpicker-row .dropdown-menu {
  width: 100% !important;
}

.selectpicker-row .bootstrap-select {
  width: 100% !important;
}

.btn-group.open .dropdown-toggle {
  box-shadow: none !important;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
  background-color: var(--primary-color) !important;
}

.form-control:focus {
  border-color: var(--primary-color) !important;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(255, 153, 0, .6) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(255, 153, 0, .6) !important;
}

.dropdown-toggle::after {
  content: none !important;
}

.bootstrap-select.btn-group .no-results {
  background: #f5f5f5 !important;
}

/*Admin model*/
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: none;
}

.admin-container {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
}

.admin-modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0 0 0 / 50%);
}

.admin-modal-content {
  position: fixed;
  width: calc(100% - 20px);
  margin: 10px;
  background-color: white;
  border-radius: 5px;
  box-shadow: var(--first-shadow);
  display: flex;
  flex-direction: column;
}

.model-sm .admin-modal-content {
  max-width: 400px;
}

.model-m .admin-modal-content {
  /* max-width: 60vw; */
  max-width: 900px;
}

.model-l .admin-modal-content {
  /* max-width: 85vw; */
  max-width: 1250px;
}

.admin-modal-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
  align-items: center;
}

.admin-modal-title {
  margin: 0;
  font-size: 16px;
  color: var(--primary-color);
}

.admin-modal-close {
  border: none;
  background-color: transparent;
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
}

.admin-modal-body {
  /* padding: 15px; */
  border-bottom: 1px solid #e9ecef;
  max-height: calc(100vh - 123px - 20px);
  overflow-y: scroll;
  overflow-x: hidden;
}

.admin-view-body {
  max-height: calc(100vh - 63px - 20px);
}

/* hide scrollbar but allow scrolling */
.admin-modal-body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}

.admin-modal-body::-webkit-scrollbar {
  display: none;
}

.admin-modal-footer {
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.admin-modal-footer button {
  padding: 6px 12px !important;
  font-size: 15px !important;
}

.admin-model-input {
  padding: 15px 15px 0 15px;
}

.daily-report-view .admin-modal-body {
  border: none !important;
}


/*User model*/
.user-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1200;
  display: none;
}

.user-container {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
}

.user-modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0 0 0 / 50%);
}

.user-modal-content {
  position: fixed;
  width: calc(100% - 20px);
  margin: 10px;
  background-color: white;
  border-radius: 5px;
  box-shadow: var(--first-shadow);
  display: flex;
  flex-direction: column;
  max-width: 500px;
}

.user-modal-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
  align-items: center;
}

.user-modal-title {
  margin: 0;
  font-size: 16px;
}

.user-modal-close {
  border: none;
  background-color: transparent;
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
}

.user-modal-body {
  /* padding: 15px; */
  border-bottom: 1px solid #e9ecef;
  max-height: calc(100vh - 123px - 20px);
  overflow-y: scroll;
  overflow-x: hidden;
}

.user-modal-footer {
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.user-modal-footer button {
  padding: 6px 12px !important;
  font-size: 15px !important;
}

.user-model-input {
  padding: 15px 15px 0 15px;
}

/* Counter Card Style */

.counter-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* Adds space between cards */
  padding: 15px;
}

.counter-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px 4px 20px 4px;
  border: 1px solid #e9ecef;
  flex: 1 1 calc(50% - 10px);
  /* Two cards in a row in mobile view */
  margin-bottom: 10px;
  justify-content: center;
  align-items: center;
}


@media (min-width: 768px) {
  .counter-card {
    flex: 1 1 calc(25% - 10px);
    /* Four cards in a row in larger views */
  }
}

.counter-card-top {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px 2px 5px 2px;
  gap: 10px;
}

.counter-card-bottom {
  padding: 10px 2px 5px 2px;
  width: 100%;
  border-top: 1px solid #e9ecef;
  text-align: center;
  border-radius: 0px 0px 20px 4px;
  color: white;
}

.c-c-c-1 {
  color: #f561ab;
}

.c-c-c-2 {
  color: #029ed9;
}

.c-c-c-3 {
  color: #fba702;
}

.c-c-c-4 {
  color: #02c9b8;
}

.c-c-bc-1 {
  background: linear-gradient(45deg, #fb81c7, #f561ab);
}

.c-c-bc-2 {
  background: linear-gradient(45deg, #05b6f0, #029ed9);
}

.c-c-bc-3 {
  background: linear-gradient(45deg, #fcc608, #fba702);
}

.c-c-bc-4 {
  background: linear-gradient(45deg, #00dec9, #02c9b8);
}

/* Route Card Style */
.route-card {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position: relative;
  margin: 10px 10px 10px 40px;
  border-radius: 20px 4px 20px 4px;
  border: 1px solid #e9ecef;
}

.route-card-from,
.route-card-to {
  display: flex;
  flex-direction: column;
}

.route-card-passanger,
.route-card-collection {
  display: flex;
  flex-direction: column;
}

.route-location {
  position: absolute;
  font-size: 30px;
  left: -32px;
  top: 8px;
  color: var(--primary-color);
}

.route-count {
  position: absolute;
  color: white;
  font-size: 11px;
  top: 7px;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -0%);
}

.route-card-left {
  flex: 2;
  padding: 10px;
}

.route-card-right {
  padding: 10px;
  text-align: right;
}

.r-c-p {
  font-size: 11px;
  color: gray;
}

.route-cards .r-line::before {
  content: "";
  position: absolute;
  border: 1px dashed var(--primary-color);
  height: calc(100% - 12px + 22px);
  left: -21px;
  top: 12px;
}

.route-cards:nth-child(3) {
  /* content: none !important; */
  background-color: #008000 !important;
}


/*chart style*/
.chart-container {
  margin: 0;
  height: 100%;
  width: 100% !important;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chart-body {
  width: calc(100% - 40px);
}

/*Filter style*/
.filter-date {
  margin: 0;
  height: 35px;
}

.filter-btn-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.btn_check input {
  display: none;
}

.btn_check label {
  color: var(--group-color);
  background: var(--group-background);
  border: 1px solid var(--group-border);
}

.btn_check input:checked+label {
  color: #ffffff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.no-filter {
  text-align: center;
  padding: 20px 15px;
  color: gray;
  font-size: 14px;
}

/*Counter Card 2 Style*/
.counter-cards-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px 40px;
  justify-content: center;
  margin-bottom: 30px;
}

.counter-card-2 {
  display: flex;
  flex-direction: column;
  /* gap: 5px; */
  align-items: center;
  justify-content: center;
}

.counter-card-2-icon {
  background-color: gainsboro;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
  color: white;
}

.counter-card-2-icon i {
  font-size: 20px;
}

.counter-card-2-value {
  font-size: 16px;
  font-weight: 500;
}

.counter-card-2-value p {
  margin: 0;
}

.counter-card-2-name {
  font-size: 14px;
  color: gray;
}

.counter-card-2-name p {
  margin: 0;
}

.counter-card-2 .c-1 {
  background: linear-gradient(45deg, #f54ea2, #ff7676);
}

.counter-card-2 .c-2 {
  background: linear-gradient(45deg, #b14cff, #7500cf);
}

.counter-card-2 .c-3 {
  background: linear-gradient(45deg, #a52a2a, #ff3434);
}

.counter-card-2 .c-4 {
  background: linear-gradient(45deg, #004ec2, #6ba7ff);
}

.counter-card-2 .c-5 {
  background: linear-gradient(45deg, #ffdf40, #ff8359);
}

.counter-card-2 .c-6 {
  background: linear-gradient(45deg, #dc3545, #ff7676);
}

.counter-card-2 .c-7 {
  background: linear-gradient(45deg, #31ddff, #1e9bb5);
}

.counter-card-2 .c-8 {
  background: linear-gradient(45deg, #2be86f, #00b541);
}

.counter-card-2 .c-9 {
  background: linear-gradient(45deg, #c20e83, #ff48bf);
}

.counter-card-2 .c-10 {
  background: linear-gradient(45deg, #00b09b, #19e0c8);
}

.counter-card-2 .c-13 {
  background: #0000f1;
  background: -webkit-linear-gradient(45deg, #0000f1, #8989ff) !important;
  background: linear-gradient(45deg, #0000f1, #8989ff) !important;
}

.counter-card-2 .c-14 {
  background: #ff4500;
  background: -webkit-linear-gradient(45deg, #ff8557, #ff4500) !important;
  background: linear-gradient(45deg, #ff8557, #ff4500) !important;
}

.counter-card-2 .c-15 {
  background: #950095;
  background: -webkit-linear-gradient(45deg, #950095, #ff00ff) !important;
  background: linear-gradient(45deg, #950095, #ff00ff) !important;
}

.counter-card-2 .c-16 {
  background: #0081ff;
  background: -webkit-linear-gradient(45deg, #5caeff, #0081ff) !important;
  background: linear-gradient(45deg, #5caeff, #0081ff) !important;
}

.counter-card-2 .c-17 {
  background: #ff008a;
  background: -webkit-linear-gradient(45deg, #ff71be, #ff008a) !important;
  background: linear-gradient(45deg, #ff71be, #ff008a) !important;
}

.multi-div {
  margin: 10px;
}

/* Chart Div */

.chart-div {
  height: 100%;
  width: 100%;
  margin: 15px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/*Card-2 Style*/

.cards-2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-2 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-radius: 5px;
  min-width: 250px;
}

.card-2-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1.5;
}

.card-2-heading {
  font-weight: 500;
  color: gray;
  font-size: 15px;
}

.card-2-value {
  font-weight: bold;
  font-size: 18px;
}

.card-2-more a {
  font-size: 13px;
  color: blueviolet;
  text-decoration: underline;
}

.card-2-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  flex: 1;
}

.card-2-percentage {
  color: gray;
  font-size: 14px;
  font-weight: 500;
}

.card-2-percentage .profit {
  color: #00b09b;
  font-size: 14px;
  font-weight: 500;
}

.card-2-percentage .loss {
  color: #f54ea2;
  font-size: 14px;
  font-weight: 500;
}

.card-2-icon span {
  display: flex;
  width: 30px;
  height: 30px;
  color: #00b09b;
  background-color: rgb(0 176 155 / 20%);
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-weight: bold;
}

.profit-icon {
  color: #00b09b !important;
  background-color: rgb(0 176 155 / 20%) !important;
}

.loss-icon {
  color: #f54ea2 !important;
  background-color: rgb(245 78 162 / 20%) !important;
}

/* .cards-2 .profit-div {
  box-shadow: rgb(0 176 155 / 30%) 0px 0px 0px 1px;
}
.cards-2 .loss-div {
  box-shadow: rgb(245 78 162 / 60%) 0px 0px 0px 1px;
} */


/*No data found style*/
.chart {
  position: relative;
  min-height: 250px;
}

.no-date-div {
  position: absolute;
  top: 50%;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* height: 100%; */
  min-width: 250px;
}

.no-data-image {
  width: 70%;
}

/*Mobile responsive*/
@media only screen and (max-width: 426px) {
  .admin-modal-body {
    max-height: calc(95vh - 123px - 20px);
  }

  .admin-view-body {
    max-height: calc(105vh - 123px - 20px);
  }
}

/*Bulk upload style*/
.row-success {
  background-color: #c7f9cc !important;
}

.row-error {
  background-color: #ffdede !important;
}

.row-duplicate {
  background-color: #ffeed4 !important;
}

.b-success {
  /* border: 2px solid green; */
}

.b-error {
  cursor: pointer;
  border: 2px solid red !important;
}

.sample-download {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--secondary-color);
}

.table-title {
  text-align: center;
  font-weight: 600;
  color: var(--primary-color) !important;
  font-size: 20px;
}

.required {
  color: red;
  padding-left: 5px;
}