#binaroo-init-pop-up {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#binaroo-init-pop-up.is-active {
  display: flex;
}

#binaroo-init-pop-up .binaroo-modal {
  background: #fff;
  border-radius: 0.5rem;
  max-width: 90%;
  max-height: 90%;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

#binaroo-init-pop-up .binaroo-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

#binaroo-init-pop-up .binaroo-modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

#binaroo-init-pop-up .binaroo-modal-header .close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

#binaroo-init-pop-up .binaroo-modal-body img {
  display: block;
  width: auto;
  height: 80vh;
  cursor: pointer;
  margin: 0 auto;
}

#binaroo-init-pop-up .binaroo-modal-body {
  overflow: scroll;
  height: 80vh;
}