body {
  background-color: #f8fafc;
  font-family: "Public Sans", serif;
  height: 100vh;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

::selection {
  background-color: #1f2937;
  color: #fff;
}

.loading-animation-wrapper {
  margin: 0;
  background-color: #11131F;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

/* Main CSS */
.loading-animation {
  position: relative;
  display: flex;
  align-items: center;
}

.loading-animation span {
  --space: 10px;
  display: inline-block;
  margin-inline: max(2px, var(--space) / 5);
  background-color: #f2f2f2;
  width: var(--space);
  height: var(--space);
  border-radius: calc(var(--space) / 2);
  animation: scale-up-down 400ms var(--delay) linear alternate infinite;
}

.loading-animation span:nth-child(1) {
  --delay: calc(-100ms * (6 - 1));
}

.loading-animation span:nth-child(2) {
  --delay: calc(-100ms * (6 - 2));
}

.loading-animation span:nth-child(3) {
  --delay: calc(-100ms * (6 - 3));
}

.loading-animation span:nth-child(4) {
  --delay: calc(-100ms * (6 - 4));
}

.loading-animation span:nth-child(5) {
  --delay: calc(-100ms * (6 - 5));
}

@keyframes scale-up-down {
  to {
    height: calc(var(--space) * 4);
  }
}
.filter-area {
  border-radius: 8px;
  background-color: #fff;
  padding: 20px;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.login-card {
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  width: 95%;
  max-width: 400px;
  margin: 0 auto;
}

.text-logo {
  text-align: center;
  font-size: 34px;
}

.aside-logo {
  font-size: 21px;
}
.aside-logo img {
  max-width: 100%;
  height: auto;
}

aside {
  width: 100%;
  max-width: 240px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}

.aside-header {
  padding: 16px 24px;
  border-bottom: 1px solid #ddd;
  position: relative;
}

nav.aside-nav {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: auto;
  padding: 10px .5rem 0;
}
nav.aside-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.aside-nav li a {
  display: flex;
  column-gap: 1rem;
  border-radius: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 0.5rem;
  font-weight: 500;
  color: rgb(75, 85, 99);
}
nav.aside-nav li:not(:last-child) {
  margin-bottom: 4px;
}
nav.aside-nav li.nav-active a, nav.aside-nav li:hover a {
  background-color: rgb(243, 244, 246);
  color: rgb(17, 24, 39);
}

.g-table-search {
  position: sticky;
  top: 0;
  z-index: 10;
  margin: -20px 0 0 0;
  padding: 20px;
  border-radius: 0 0 8px 8px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.g-table-search-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g-table-search-inner-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.g-table-wrapper {
  border-radius: 8px;
  background-color: #fff;
  padding: 20px;
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  font-size: 15px;
}

.admin-container-inner {
  margin: 20px;
}

.aside-footer {
  margin-top: auto;
}
.aside-footer > form {
  text-align: center;
}

main {
  width: 100%;
  overflow: auto;
}

footer {
  color: #918f8f;
}
footer a, footer a:hover {
  color: #918f8f;
}

.load-status {
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 30px;
  display: inline-block;
  font-size: 14px;
}
.load-status-not-started {
  background-color: #fcf8e0;
  color: #a99322;
}
.load-status-intransit {
  background-color: #e0eafc;
  color: #3f80ea;
}
.load-status-delivered {
  background-color: rgb(220, 252, 231);
  color: rgb(22, 101, 52);
}
.load-status-tonu {
  background-color: #fbe3ed;
  color: #a54a6a;
}

.badge-groups {
  display: flex;
  gap: 6px;
}

.badge {
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 30px;
  display: inline-block;
  font-size: 14px;
}

.badge.text-bg-warning {
  background-color: #fcf8e0 !important;
  color: #a99322 !important;
}

.circle-status {
  font-weight: 500;
  padding: 10px;
  border-radius: 30px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-status-info {
  background-color: #e0eafc;
  color: #3f80ea;
}
.circle-status-success {
  background-color: rgb(220, 252, 231);
  color: rgb(22, 101, 52);
}
.circle-status-danger {
  background-color: #fbe3ed;
  color: #a54a6a;
}

.action-button {
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #ddd;
  color: #625a5a;
  box-shadow: 0 0 1px #ddd;
}
.action-button.action-button-info:hover {
  background-color: #e0eafc;
  color: #3f80ea;
}
.action-button.action-button-danger:hover {
  background-color: #fbe3ed;
  color: #a54a6a;
}

.dashed-underline {
  border-bottom: 1px dashed #707070;
}

.heading1 {
  margin: 0px;
  padding: 0px;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}

.section-heading {
  font-size: 26px;
  margin: 0 0 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.heading5 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}

.heading6 {
  font-size: 23px;
  font-weight: 500;
  margin: 0;
}

.table {
  border: 1px solid #ddd;
}
.table thead th {
  background-color: #1f2937;
  color: #fff;
  font-weight: normal;
}
.table th, .table td {
  padding: 16px 24px;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

body table.dataTable th.dt-type-numeric,
body table.dataTable th.dt-type-date,
body table.dataTable td.dt-type-numeric,
body table.dataTable td.dt-type-date {
  text-align: left !important;
}

body table.dataTable thead th, body table.dataTable tfoot th {
  font-weight: normal;
}

/* Pagination */
body div.dt-container .dt-length .dt-input + label {
  font-size: 14px;
  color: #4c4c4c;
  margin-left: 5px;
}

body div.dt-container .dt-info {
  font-size: 12px;
  color: #4c4c4c;
}

body div.dt-container div.dt-paging .dt-paging-button {
  border-radius: 4px;
  padding: 2px 12px;
}

body div.dt-container div.dt-paging .dt-paging-button.current,
body div.dt-container div.dt-paging .dt-paging-button.current:hover,
body div.dt-container div.dt-paging .dt-paging-button:hover {
  background: #1f2937;
  color: #fff !important;
}

.logout-btn {
  background-color: rgb(243, 244, 246);
  color: rgb(17, 24, 39);
  border: none;
  width: calc(100% - 20px);
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 10px;
  text-align: left;
}

.logout-btn > i {
  margin-right: 8px;
}

.additional-note {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 14px;
  position: relative;
}
.additional-note + .additional-note {
  margin-top: 15px;
}
.additional-note .additional-complete-meta {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.additional-note .additional-complete-meta i {
  color: #fff;
  background-color: green;
  padding: 12px;
  border-radius: 8px;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}
.additional-note-expired {
  text-decoration: line-through;
}
.additional-note-expired .additional-note-icon {
  background: #727272;
  color: inherit;
}
.additional-note-v2 .additional-note {
  border: none;
  padding: 0;
  border-radius: 0;
  margin-top: 10px;
  padding-top: 10px;
}
.additional-note-v2 .additional-note + .additional-note {
  border-top: 1px solid #ddd;
}

.additional-note-v2 .additional-note:first-child {
  margin-top: 0;
}

.additional-note-v2 .additional-note-title {
  font-size: 18px;
}
.additional-note-v2 .additional-note-datetime {
  font-size: 14px;
  font-weight: normal;
}

.additional-note-icon {
  padding: 5px;
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  background-color: rgb(16, 16, 16);
  color: #182a55;
}

.additional-note-datetime {
  font-size: 16px;
  font-weight: 600;
}

.additional-note-text {
  margin-top: 10px;
  width: calc(100% - 270px);
}

.additional-note-buttons {
  position: absolute;
  top: 10px;
  right: 0;
}

footer {
  margin: 15px 0;
}

.refresh-states {
  font-size: 14px;
}

.refresh-states-icon {
  height: 20px;
}

.trips-page .dt-container .dt-search {
  /* display: none; */
}

.trips-page .dt-container > .dt-layout-row .dt-info {
  font-weight: bold;
}

.trips-page .dt-container > .dt-layout-row + .dt-layout-row .dt-info {
  font-weight: normal;
}

.authError {
  color: red;
  margin: 0;
}

.text-primary {
  color: #1f2937;
}

.edit-icon {
  cursor: pointer;
}

.alert-24 {
  transform-origin: 50% 0;
  animation: vibrate 4s infinite;
  color: #ffab01;
  margin-left: 4px;
  font-size: 20px;
}

@keyframes vibrate
{
  /* 25%   {transform: rotate(15deg)}
  50%  {transform: rotate(-15deg)}
  75%  {transform: rotate(15deg)}
  100% {transform: rotate(-15deg)}
 */

 0%, 100% {
  transform: rotate(0deg);  
}
5% {
  transform: rotate(-30deg);    
}
10% {
  transform: rotate(25deg);     
}
15% {
  transform: rotate(-25deg);     
}
20% {
  transform: rotate(20deg);     
}
25% {
  transform: rotate(-20deg);     
}
30% {
  transform: rotate(15deg);     
}
35% {
  transform: rotate(-15deg);     
}
40% {
  transform: rotate(15deg);     
}
45% {
  transform: rotate(0deg);     
}
}

.more-location-bg {
  background: #eff1f5;
  padding: 10px;
  border-radius: 8px;
  position: relative;
}

.more-location-bg + .more-location-bg {
  margin-top: 15px;
}

.more-location-bg {
  margin-bottom: 15px;
}

.field-icon-divider {
  position: relative;
}

.field-icon-divider:after {
  content: "";
  height: 37px;
  width: 1px;
  position: absolute;
  top: 0;
  right: 45px;
  background: #ddd;
  z-index: 1;
}

.linkbtn {
  padding: 0;
  background: none;
  border: none;
}

.datetime {
  background: #dedede;
  color: #181616;
  width: max-content;
  padding: 2px 6px;
  border-radius: 6px;
}

body div.daterangepicker .ranges li.active,
body div.daterangepicker td.active,
body div.daterangepicker td.active:hover
body div.daterangepicker .ranges li.active {
  background-color: #1f2937;
}

body .daterangepicker td.in-range {
  background-color: rgba(31,41,55.10);
  color: #fff;
}

.additional-notes-wrapper .border-top {
  /* max-height: 400px; */
  overflow: auto;
}

.g-table-wrapper .dt-layout-start {
  width: 100%;
}

.dt-layout-table + .dt-layout-row .dt-layout-cell {
  width: auto;
}

.g-table-wrapper .dt-search {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-table-wrapper .dt-search input[type='search'] {
  outline: none;
}

.payment-received td {
  background: #dcfce7;
}

.locations-info .location-info {
  width: 160px;
}

.locations-info .location-info + i {
  width: 50px;
}

.trip-details + .trip-details {
  margin-top: 10px;
}

.dt-scroll-body {
  /* height: auto !important;
  max-height: none !important; */
}

.accounting-page .table th,
.accounting-page .table td {
  padding: 10px;
}

.toggle {
  border: none;
  color: #fff;
  padding: 5px 14px;
  background: #1f2937;
  border-radius: 6px;
  z-index: 99;
  font-size: 22px;
}

.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  background-color: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 8px;
}

.dt-scroll-body {
  max-height: fit-content !important;
}

@media (max-width:992px) {
  body {
    height: auto;
    overflow: auto;
  }
  aside {
    position: absolute;
    z-index: 999;
    left: -100%;
    top: 0;
    transition: all .5s;
  }
  aside.open {
    left: 0;
  }

  .g-table-search-inner {
    flex-direction: column;
  }

  .g-table-search-inner-left {
    width: 100%;
  }

  .g-table-search-inner-right {
    width: 100%;
  }
  .mobile-header {
    display: flex;
  }
}

#pickup_time_exact-error, #delivery_time_exact-error {
  position: absolute;
  bottom: -30px;
  left: 0;
}

/*# sourceMappingURL=custom.css.map */