.accordion-button::after{
    content: " " !important; 
    /* using an image as background for the arrow head */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234B5563'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
/* add the 180 deg transformation */
.accordion-button:not(.collapsed)::after{
    transform: rotate(180deg) !important;
}
/* update the color background to white */
.accordion-item {
    border: none !important;
    background-color: var(--bs-white);
}

.modal-content {
  position: relative;
  padding-top: 24px;
}

.modal-loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #e6eeff;
  border-radius: 16px 16px 0 0;
  margin: 0;
  z-index: 100;
  overflow: hidden;
}

.modal-loading-bar-inner {
  height: 100%;
  width: 40%;
  background: #2563eb;
  border-radius: 5px;
  position: absolute;
  left: 0;
  animation: loading-bar-move 1.2s linear infinite;
}

@keyframes loading-bar-move {
  0% {
    left: 0;
    width: 40%;
    opacity: 1;
  }
  50% {
    left: 30%;
    width: 40%;
    opacity: 1;
  }
  100% {
    left: 60%;
    width: 40%;
    opacity: 1;
  }
}

#filterModal[style*="display: block"] .dataTables_processing,
#filterModal.show .dataTables_processing {
  display: none !important;
}
