::placeholder {
  color: white;
  opacity: 0.8;
}

*:focus {
  outline:none;
}
 
#scrollTop, #button, #visitor {
  display: none;
}

.parent {
  height: 600%;
  width: 100%;
  background-color: black;
  font-family: georgia, serif; 
  color: rgb(47, 190, 47);
}

.center {
  display: inline-block;
  margin-left: 25%;
  width: 75%;
}


a{
  color: rgb(47, 190, 47);
}

a:hover {
  color: rgb(0, 255, 38);
}

/*---------------------------------------------------------------------*/


.topnav {
  background-color: black;
  position: relative;
  margin-left: 2%;
  width: 90%;
  
  /*border: 2px solid rgb(47, 190, 47);*/
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: rgb(47, 190, 47);
  padding: 10px 0px;
  text-decoration: none;
  font-size: 24px;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  margin-left: 100px;
}

.topnav a.icon {

  opacity: 0.8;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin-left: 2%;
}

.topnav a:hover {
  color: rgb(0, 255, 38);
}

.topnav .menu {
  margin-left: 80;
  font-size: 30px;
  text-transform: uppercase;
  color: white;
  font-weight: bold;
}


.runString {
  display: block;
  position: absolute;
  left: 33%;
  top: 0;
  height: 100%;
  width: 60%;

  overflow: hidden;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;

  /*border: 1px solid rgb(47, 190, 47);*/
}

.runStr_inner {
  display: flex;
}

.runStr_line {
  flex-shrink: 0;
  margin: 0;
  padding: 18px 15px;
  min-width: 100%;
  white-space: nowrap;
  animation-name: str;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes str {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(-100%);
  }
}


.content_container {
  width: 100%;
  float: left;
  height: 96%;  /* important for stickiness */
}

.content_container table {
  width: 90%;
  margin-left: 5%;
  margin-top: 5%;
  color: rgb(47, 190, 47);
  table-layout: fixed;

  border-collapse: collapse;
}

.content_container tr {
  border-bottom: 1pt solid rgb(47, 190, 47);
}

.content_container td {
  text-align: left;
  padding: 5px;
  font-size: 22px;
}

.content_container td:nth-child(odd) {
  width: 35%;
  font-size: 24;
}

.content_container td:nth-child(even) {
  width: 65%;
}

/* Utils */



.green{
  color: rgb(0, 255, 38);
}

.white {
  color: white;
}
 
.divseparator {
  margin-top: 20px;
}

.text {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.bigtext {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
}

.smalltext {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
}

.maintext {
  font-size: 22px;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 5%;
}

.api {
  font-size: 16px;
  color: white;
}

.copyright {
  font-size: 12px;
  color: rgb(0, 255, 38);
  margin-left: 0%;
}

.table_noborder {
  border-collapse: collapse;
  border: none;
  margin-left: 0px;
  width: 50%;
  margin-top: 0%;
}

.table_noborder td {
  border: none;
  padding-left: 0px;

}

.table_noborder td:nth-child(odd) {
  width: 70%;
}

.table_noborder td:nth-child(even) {
  width: 30%;
}

#map { 
  width: 90%;
  height: 700;
  margin-left: 5%;
}


.interactive_50 { 
  width: 90%;
  aspect-ratio: 16/9;
  margin-left: 5%;
}

.pagination {
  margin-left: 5%;
  font-size: 18px;
}

.pagination a {
  color: white;
  float: left;
  padding: 16px 16px;
  text-decoration: none;
}

.pagination a.active {
  background-color: rgb(47, 190, 47);
  color: white;
  border-radius: 3px;
}

.pagination a:hover:not(.active) {
  background-color: rgb(47, 190, 47);
  border-radius: 3px;
}

.image {
  width: 50%;
  margin-left: 25%;
}

/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  background-color: #555;
  color: white;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 100;
  bottom: 125%;
  left: 50%;
  margin-left: 150;
  margin-bottom: 350;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}


.outer {
  display: grid;
  grid-template: 1fr / 1fr;
  place-items: left;
}

.outer > * {
  grid-column: 1 / 1;
  grid-row: 1 / 1;
}

.outer .below {
  z-index: 1;
  

  position: fixed;
  top: 10;
  left: 20;

}
.outer .top {
  z-index: 2;
  position: fixed;

  margin-left: 3%;
  display: inline-block;
  width: 25%;
  position: fixed;
}

.stick {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5;
  margin-left: 5%;
}




.outer2 {
  display: grid;
  grid-template: 1fr / 1fr;
  place-items: left;
}

.outer2 > * {
  grid-column: 1 / 1;
  grid-row: 1 / 1;
}

.outer2 .below2 {
  z-index: 1;
}

.outer2 .top2 {
  z-index: 2;
  margin-left: 30%;
  margin-top: 1%;
}


.open-button {
  opacity: 0.8;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  top: 40%;
  left: 40%;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
}

/* Full-width input fields */
.form-container input[type=text] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 15px 0;
  border: 2px solid rgb(47, 190, 47);
  background: black;
  color: white;
}


.form-container .btn {
  background-color: rgb(47, 190, 47);
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  width: 50%;
  margin-bottom:10px;
  opacity: 0.8;
  margin-left: 25%;
}

.form-container input[type=image] {
  width: 30px;
  margin-left: 100%;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}


/* The popup form - hidden by default */
.captcha-popup {
  display: none;
  position: fixed;
  top: 20%;
  left: 40%;
  z-index: 9;
}

/* Add styles to the form container */
.captcha-container {
  max-width: 300px;
}

.captcha-container input[type=image] {
  width: 30px;
  margin-left: 100%;
}

.cursor {
  display: inline-block;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  0% {opacity: 1;} 50% {opacity: 0;} 100% {opacity: 1;}
}



