::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(255, 255, 255);
  background: #fdfdfde7;
}

::-webkit-scrollbar-thumb {
  background: #6777ef;
  border-radius: 50px;
}

.modal .modal-dialog .modal-content .modal-header {
  background-color: #6777ef;
  color: whitesmoke;
}

.modal .modal-dialog .modal-content .modal-body {
  max-height: calc(100vh - 150px);
  overflow: auto;
}

.table thead tr th {
  border-bottom: 3px double rgb(214, 212, 212);
}

.table thead {
  height: 50px;
  background-color: #6777efc0;
  color: whitesmoke;

}

.table-responsive .table {
  border-color: rgb(214, 212, 212);
}

.table {
  font-size: 11.5pt;
}


.loader-sm {
  width: 15px;
  height: 15px;
  border: 2px solid #e0e0e0;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-top: 5px;
}

.loader-sm-btn {
  width: 10px;
  height: 10px;
  border: 2px solid #e0e0e0;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-top: 5px;
}

.loader-table {
  width: 25px;
  height: 25px;
  border: 2px solid #e0e0e0;
  border-top-color: #6777efc0;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-top: 5px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



.loader {
  width: 60px;
  aspect-ratio: 1;
  display: grid;
}

.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  --c: no-repeat radial-gradient(farthest-side, #25b09b 92%, #0000);
  background:
    var(--c) 50% 0,
    var(--c) 50% 100%,
    var(--c) 100% 50%,
    var(--c) 0 50%;
  background-size: 12px 12px;
  animation: l12 1s infinite;
}

.loader::before {
  margin: 4px;
  filter: hue-rotate(45deg);
  background-size: 8px 8px;
  animation-timing-function: linear
}

@keyframes l12 {
  100% {
    transform: rotate(.5turn)
  }
}


.dataTable {
  width: 100%;
}

.dataTable thead tr th {
  height: 60px;
  font-weight: bold;
  font-size: 8pt;
  vertical-align: middle;
  text-align: center;
  background-color: #d7fffc;
  text-transform: uppercase;
  border-right: 1px solid #00000044;
  border-left: 1px solid #00000044;
  border-bottom: 3px double #55555544;
  padding: 5px;
}

.dataTable tbody tr td {
  height: 50px;
  /* font-weight: bold; */
  font-size: 9pt;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #00000044;
  /* border-left: 1px solid #00000044; */
  padding: 5px;
}

.dataTable tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}


.dataTable tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.form-control {
  border: none;
  border-width: 0;
  box-shadow: none;
  /* height: 40px; */
  border-bottom: 1px solid #a5a5a5b2;
}


.form-control:focus {
  transition: 0.4s ease-in-out;
  border: none;
  border-width: 0;
  box-shadow: none;
  /* height: 40px; */
  border-bottom: 1px solid #6777efc0;
}


.alert-margin {
  padding: 20px;
  background-color: rgb(255, 255, 255);
  border-left: 3px solid #6777efc0;
}