#bb_h80_scroll >.modal-dialog>.modal-content>.modal-body>.bootbox-body {
  max-height: 80vh;
  overflow-y: scroll;
  margin: 0;
  padding: 10px;
  overflow-x: hidden;
}
/* HERE IS THE SPINNER CONTENT---------------------------------------------------------------------------------*/
.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 40px; /* Reduced from 80px to 40px */
  height: 40px; /* Reduced from 80px to 40px */
}

.lds-spinner div {
  transform-origin: 20px 20px; /* Adjusted to half of the new width and height */
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 1.5px; /* Adjusted to half of the new height */
  left: 18.5px; /* Adjusted to half of the new width */
  width: 3px; /* Reduced from 6px to 3px */
  height: 9px; /* Reduced from 18px to 9px */
  border-radius: 20%;
  background: #ec1c24;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*END HERE IS THE SPINNER CONTENT---------------------------------------------------------------------------------*/

.UploadParent {
  max-width: 700px;
}





.progress-bar__container {
  width: 80%;
  height: 2rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  will-change: transform;
  box-shadow: 0 0 5px #ec1c24;
}

.progress-bar {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  background-color: #ec1c24;
  top:0;
  bottom: 0;
  left: -100%;
  border-radius: inherit;
  display: flex;
  justify-content: center;
  align-items:center;
  color: rgb(47, 46, 46);
  font-family: sans-serif;
}
.progress-bar__text {
  display: block;
  margin: 0 auto;
  color: rgb(61, 58, 58);
  z-index: 1000;
  position: absolute;
  text-align: center;
  width: 100%;
}

.DEVELOPMENT{
  background-color: darkgoldenrod;
}


/* DataTables */
div:has(> .dataTables_wrapper) {
  padding: 10px 25px;
}
.dataTables_length {
  display: inline-block;
  width: 15%;
  min-width: 200px;
  margin-right: 20px;
  margin-bottom: 15px;
}
.dataTables_filter {
  display: inline-block;
  width: 20%;
  min-width: 250px;
  margin-bottom: 15px;
}
.dataTables_length > label, .dataTables_filter > label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid #28282b;
  border-radius: 10px;
  background-color: #dee2e6;
}
.dataTables_length > label > select, .dataTables_filter > label > input {
  margin: 0px 15px;
  width: 100%;
  padding: 3px 5px;
  border: 1px solid #28282b;
  outline-offset: 0px;
}
.ref-info-extra-info {
  display: block;
  width: 100%;
  padding-top: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: crimson;
}
.dataTables_paginate.paging_simple_numbers {
  margin-top: 15px;
}
.paginate_button.previous {
  font-size: 1rem;
  margin-right: 10px;
  color: black;
}
.paginate_button.next {
  font-size: 1rem;
  margin-left: 10px;
  color: black;
}
span > .paginate_button {
  margin: 0px 5px;
  color: #28282b;
}
.paginate_button.current {
  font-size: 1rem;
  color: ghostwhite;
  padding: 1px 5px;
  border: 1px solid #28282b;
  background: crimson;
  border-radius: 5px;
}
.paginate_button:hover {
  cursor: pointer;
}
.paginate_button.previous.disabled, .paginate_button.next.disabled {
  color: grey;
}
.paginate_button.previous.disabled:hover, .paginate_button.next.disabled:hover {
  cursor: default;
}
@keyframes glowingOrange {
  0% {
    box-shadow: 0 0 5px #ff8800, 0 0 10px #ff8800, 0 0 15px #ff8800;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 10px #ff8800, 0 0 20px #ff8800, 0 0 30px #ff8800;
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 5px #ff8800, 0 0 10px #ff8800, 0 0 15px #ff8800;
    transform: scale(1);
  }
}
.DrawingButtonActive {
  -webkit-animation: glowingOrange 1000ms infinite alternate;
  -moz-animation: glowingOrange 1000ms infinite alternate;
  -o-animation: glowingOrange 1000ms infinite alternate;
  animation: glowingOrange 1000ms infinite alternate;
  background-color: #ff8800 !important;
  color: white !important;
  font-weight: bold;
  border: 2px solid white;
  transition: all 0.2s ease-in-out;
}