.bpfly-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.62);
  padding: 0;
  margin: 0;
}

.bpfly-content {
  position: relative;
  width: fit-content;
  height: 80vh;
  max-width: 92vw;
  overflow: visible;
  border-radius: 16px;
}

.bpfly-image {
  display: block;
  height: 80vh;
  width: auto;
  max-width: 92vw;
  object-fit: contain;
  margin: 0;
  border-radius: 16px;
}

.bpfly-close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 50% !important;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  -webkit-appearance: none;
  appearance: none;
  aspect-ratio: 1 / 1;
}

