/******************* Begin of Generated Text ******************/
.text_overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.text_overlay:target {
  visibility: visible;
  opacity: 1;
}
.text_overlayshow {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: visible;
  opacity: 1;
}
.text_popup {
  margin: 5vh auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 50vw;
  min-width: 300px;
  position: relative;
}

.text_popup .text_close {
  position: absolute;
  top: 5px;
  right: 20px;
  transition: all 200ms;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.text_popup .text_close:hover {
  color: #06D85F;
}
.text_popup .text_content {
  max-height: 80vh;
  overflow: auto;
  text-align: center;
}

