input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.dataTable {
  width: 100%;
}

/*Loader*/
.loader {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}

.loader .load-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader .spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
/*Loader*/

.login-logo {
  width: 100px;
  height: auto;
}

.clickable {
  cursor: pointer;
}

.hidden {
  display: none;
}

#login-background {
  background: url("../images/background.jpg") no-repeat center center/cover;
  background-blend-mode: overlay; /* Try: overlay, multiply, soft-light */
}

.curverd-border {
  border-radius: 15px;
}

/* Data table */
.dataTables_filter input {
  width: 250px !important;
  border-radius: 8px !important;
  padding: 0.5em 0.75em !important;
  border: 1px solid #ced4da !important;
  margin-left: 0.5em !important;
}

.dataTables_paginate .active > .page-link {
  background: linear-gradient(87deg, #212529, #343a40) !important;
  color: #fff !important;
  border-color: #212529 !important;
  box-shadow: none !important;
}
/* Data table */

/* Card Divider */
.card-divider {
  border-top: 1px solid #000000db !important;
}
/* Card Divider */

/* Data Tables */
table.dataTable th,
table.dataTable td {
  color: #343a40 !important;
  font-size: 12px !important;
}
.table-ver-center th,
.table-ver-center td {
  vertical-align: middle !important;
}

.dataTables_processing {
  display: none !important;
}
/* Data Tables */
