#js_int-greyout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
  display: none;
}
#js_int-greyout.active {
  display: block;
}
#js_int-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  display: none;
  box-shadow: 0px 3px 15px #00000072;
}
#js_int-content {
  height: 100%;
}
#js_int-closeButton {
  background: white;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0.3em;
  top: 0.3em;
  position: absolute;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.7);
  font-family: Arial;
}
.active #js_int-container {
  display: block;
}
.native-driver-tracker {
  width: 1px;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

@media (min-width: 600px) {
  #js_int-container {
    width: 85%;
    height: 75%;
    max-height: 800px;
  }
  #closeButton {
    right: 0em;
    top: -3em;
  }
}

@media (min-width: 1020px) {
  #js_int-container {
    width: 80%;
  }
  #closeButton {
    right: -2.5em;
    top: -1.5em;
  }
}
