.fa {
  color: #6477dd;
}

.w-90 {
    width: 90%!important
}


.table thead tr th {
  font-weight: 600;
  padding: 12px 16px;
  color: #fff;
  background: blue;
}

@media print {
  .no-print {
    display: none !important;
  }

  html,
  body {
    overflow: visible !important;
  }

  .main-container {
    padding: 0 0 0 0;
    -webkit-transition: padding-left 0.1s ease;
    transition: padding-left 0.1s ease;
  }
  .app-body {
    overflow: visible !important;
  }

  .page-wrapper .content {
    padding: 0px 0px 0px 0px !important;
  }

  #info > td {
    vertical-align: top !important;
  }
}

.hide-item {
  display: none !important;
}

.error-msg {
  color: red;
  font-size: 12px;
  margin-top: 0.25rem;
  font-weight: normal;
}

.hide-errormsg {
  display: none !important;
}

.pager {
  background-color: #dda0dd;
}

.filterBox {
  border-radius: 10px;
  border: 1px solid #dda0dd;
  padding: 20px;
  margin-left: 15px;
}
/* 
    padding: .25rem .5rem;
    font-size: .65625rem;
    line-height: 1.5;
    border-radius: .2rem; */

.search-btn {
  background-color: #dcdce0;
  border-radius: var(--bs-btn-border-radius);
  color: var(--bs-body-color);
  padding: 0.25rem 0.53rem;
  line-height: 1.5;
  font-size: 0.9rem;
  font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(24, 24, 25, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem
    rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  /* border: var(--bs-btn-border-width) solid var(--bs-btn-border-color); */
  border-color: #ddd;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.page-wrapper .content {
  flex: 1 0 auto;
}

.app-footer {
  margin-top: auto;
  padding: 0.9rem 1.25rem 1.15rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .page-wrapper .content {
    min-height: calc(100vh - 76px);
    padding: 16px 12px;
  }

  .app-footer {
    padding: 0.8rem 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .app-footer a {
    display: inline-block;
    word-break: break-word;
  }
}

.search-btn:hover {
  background-color: #154174;
  color: #ffffff;
}
.page_length {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2349494b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #181819;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image:
    var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid #ababae;
  border-radius: var(--bs-border-radius);
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

/* CSS */
#overlay-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
