@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

html {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: #f0f1f3;
  color: #0a1629;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1360px;
  margin: auto;
}

.form-control {
  padding: 11px 16px;
  color: #0a1629;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: 1px solid #d9d9d9;
  background: #fff;
}

.form-control::placeholder {
  color: #b3b3b3;
}

.form-control:focus-visible {
  outline: none;
}

table {
  border-collapse: separate;
  border-spacing: 0 16px;
}

table tr {
  padding-bottom: 1px;
}

table th {
  color: #1a1a1a;
  font-family: Inter;
  font-size: 14px;
  padding: 0px 12px 0px 12px;
  font-weight: 600;
  line-height: normal;
}

table td {
  color: rgba(26, 26, 26, 0.6);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding: 8px 12px 8px 12px;
  border-top: 1px solid #f0f1f3;
  border-bottom: 1px solid #f0f1f3;
}

table tbody tr td:first-child {
  border-left: 1px solid #f0f1f3;
  border-radius: 8px 0 0 8px;
  padding: 8px 12px 8px 12px;
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  -ms-border-radius: 8px 0 0 8px;
  -o-border-radius: 8px 0 0 8px;
}

table tbody tr td:last-child {
  border-right: 1px solid #f0f1f3;
  padding: 8px 12px 8px 12px;
  border-radius: 0 8px 8px 0;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  -o-border-radius: 0 8px 8px 0;
}

.navtabs li {
  color: #000;
  padding: 8px 12px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.navtabs li:hover a {
  color: #0f93a1;
}

.navtabs .uk-active {
  background: #0f93a1;
  color: #fff;

}

.navtabs .uk-active a {
  color: #fff !important;
}


header .active {
  color: #0f93a1;
}

button,
a {
  cursor: pointer;
}



.vehicle-bg1 {
  background-image: url("../../assets/images/layerbg1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.vehicle-bg2 {
  background-image: url("../../assets/images/layerbg2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swal2-icon {
  border: none;
}

.swal2-styled {
  min-width: 100px;
}

.report-table table {
  border-spacing: 0;
  border-collapse: collapse;
}

.report-table table th {
  padding: 12px;
  border: 1px solid #f6f6f6;
  background: #f7f7f7;
}

.report-table table td {
  border: 1px solid #f6f6f6;
}


.full-page-loader {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-page-loader .car__body {
  -webkit-animation: shake 0.2s ease-in-out infinite alternate;
  animation: shake 0.2s ease-in-out infinite alternate;
}

.full-page-loader .car__line {
  transform-origin: center right;
  stroke-dasharray: 22;
  -webkit-animation: line 0.8s ease-in-out infinite;
  animation: line 0.8s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.full-page-loader .car__line--top {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.full-page-loader .car__line--middle {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.full-page-loader .car__line--bottom {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

@-webkit-keyframes shake {
  0% {
    transform: translateY(-1%);
  }

  100% {
    transform: translateY(3%);
  }
}

@keyframes shake {
  0% {
    transform: translateY(-1%);
  }

  100% {
    transform: translateY(3%);
  }
}

@-webkit-keyframes line {
  0% {
    stroke-dashoffset: 22;
  }

  25% {
    stroke-dashoffset: 22;
  }

  50% {
    stroke-dashoffset: 0;
  }

  51% {
    stroke-dashoffset: 0;
  }

  80% {
    stroke-dashoffset: -22;
  }

  100% {
    stroke-dashoffset: -22;
  }
}

@keyframes line {
  0% {
    stroke-dashoffset: 22;
  }

  25% {
    stroke-dashoffset: 22;
  }

  50% {
    stroke-dashoffset: 0;
  }

  51% {
    stroke-dashoffset: 0;
  }

  80% {
    stroke-dashoffset: -22;
  }

  100% {
    stroke-dashoffset: -22;
  }
}