#interstitial_container {
  position: absolute;
  left: -100000px;
  top: -100000px;
  z-index: -1;
}
#interstitial_container.view {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  inset: 0;
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#interstitial_container.view::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  inset: 0;
  z-index: 0;
}
#interstitial_container.view #interstitial {
  background-color: white;
  padding: 1em;
  border-radius: 0.5em;
  box-shadow: 0.5em 0.5em 2em rgba(0, 0, 0, 0.1);
  z-index: 1;
  overflow: hidden;
  position: relative;
}
#interstitial_container.view #interstitial::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: rgba(0, 0, 0, 0.4);
  animation: closeProgress var(--timeout, 6s) linear;
  animation-fill-mode: forwards;
}
@keyframes closeProgress {
  to {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }
}
#interstitial_container.view #interstitial .close_interstitial {
  display: none;
}
#interstitial_container.view #interstitial .close_interstitial.showLate {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5em;
  background-color: rgba(0, 0, 0, 0.05);
}
#interstitial_container.view #interstitial .close_interstitial.showLate::after {
  content: "\f00d";
  font-family: "FontAwesome";
  line-height: 1;
  display: block;
}
