.screen-crosshair {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 800;
}

.screen-crosshair .cross {
  position: relative;
  width: 32px;
  height: 32px;
}

.screen-crosshair .cross .h,
.screen-crosshair .cross .v {
  position: absolute;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.screen-crosshair .cross .h {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.screen-crosshair .cross .v {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}
