@font-face {
  font-family: Foco;
  src: url(/fonts/Foco-Regular.ttf);
}
* {
  font-family: Foco;
}
.bg-gradient-primary {
    background-color: #292829;
    background-image: linear-gradient(
180deg
,#454545 10%,#292829 100%);
}
.text-primary {
  color: #192D5A !important;
}
.page-item.active .page-link {
    background-color: #192D5A;
    border-color: #192D5A;
}
.btn-confirm {
  border: 0;
  padding: 10px;
  margin: auto;
  border-radius: 10px;
  background-color: #003055;
  color: white;
}

.btn-primary{
  color: #fff;
  background-color: #a3e490 !important;
  border-color: #a3e490 !important;
}

.btn-outline-primary {
  color: #a3e490;
  border-color: #a3e490 !important;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #192D5A ;
  border-color: #192D5A ;
}

.exid-spinner {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.75);
  border-color: #ddd;
  color: #895C37;
}

.exid-spinner.active {
  display: flex;
}

.exid-spinner::before {
  content: "";
  box-sizing: border-box;
  width: 1em;
  height: 1em;
  border: 0.1em solid;
  border-color: inherit;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: exid-spin 0.75s linear infinite;
}
.sidebar-dark .sidebar-heading {
  color: #fff;
}

@keyframes exid-spin {
  from { transform: rotate(0deg) }
  to { transform: rotate(360deg) }
}
.table-confirmed {
  display: none !important;
}