/* Hide scrollbar but allow scroll */
.modal-body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.modal-body {
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer */
}

.modal-body::-webkit-scrollbar-thumb {
  background: transparent;
}
