/* Start Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
	padding-bottom: 70px;
	margin-bottom: 60px;
}

/* .breadcrumb {
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 5px;
} */


.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  /* background-color: #f5f5f5; */
}

[data-bs-theme="light"] {
  .footer {
    background-color: #f5f5f5;
  }
  .pagination-item-count {
    background-color: #EEEEEE;
    padding: 5px;
  }
  .breadcrumb {
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 5px;
  }

  /* Transparent Overlay */
  .loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
  }
  .loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  }
}

[data-bs-theme="dark"] {
  .footer {
    background-color: #333333;
  }
  .pagination-item-count {
    background-color: #333333;
    padding: 5px;
  }
  .breadcrumb {
    background-color: #333333;
    border-radius: 4px;
    padding: 5px;
  }

  /* Transparent Overlay */
  .loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(100,100,100,0.3);
  }
  .loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    box-shadow: rgba(220, 220, 220, 0.75) 1.5em 0 0 0, rgba(220, 220, 220, 0.75) 1.1em 1.1em 0 0, rgba(220, 220, 220, 0.75) 0 1.5em 0 0, rgba(220, 220, 220, 0.75) -1.1em 1.1em 0 0, rgba(220, 220, 220, 0.75) -1.5em 0 0 0, rgba(220, 220, 220, 0.75) -1.1em -1.1em 0 0, rgba(220, 220, 220, 0.75) 0 -1.5em 0 0, rgba(220, 220, 220, 0.75) 1.1em -1.1em 0 0;
  }
}

.text-bold {
  font-weight: bold;
}

.container .text-muted {
  margin: 10px 0;
}

/* .card {
  margin-bottom: 10px;
} */

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
  text-align: right;
}
/* End Sticky footer styles
-------------------------------------------------- */

/* Start Spinner
-------------------------------------------------- */
/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 9999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}


/* Animation */
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* End Spinner
-------------------------------------------------- */
