.modal-header {
  border-bottom: 0 solid;
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
  padding: 0;
}

.btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0;
  position: absolute;
  top: -35px;
  right: 7px;
  background-color: var(--bh--color--prim);
  opacity: 1;
  border-radius: 4px;
  transform: scale(1);
  transition-duration: 1s;
}

.btn-close:hover {
  transform: scale(1.3);
}

.modal-content {
  color: var(--bh--bgcolor--prim);
  background-color: rgba(255,255,255,0);
  /*border: 1px solid var(--bh--color--prim);*/
  border-radius: 0;
}

.modal-body {
  padding: 0;
}

.modal-backdrop {
  /*background-color: red;*/
  opacity: 0.9 !important;
}

