
:root {
  --colourLightGrey: #efefef;
  --colourGrey: #8c8c8c;
  --colourDarkGrey:  #3a3a3a;
  --colourLightBlue: #5db6dc;
  --colourGreen: #10c469;
  --colourWhite: white;
  --colourTest: none; /* hsl(180 10% 50% / 0.5); */
  
}


#loader {
  z-index: 1;
  width: 5em;
  height: 5em;
  border: 0.5em solid #3a3a3a;
  border-radius: 50%;
  border-top: 0.5em solid #43E04B;
  animation: spin 1s cubic-bezier(0.41, 0.19, 0.65, 0.84) infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#myDiv {
  display: none;
  text-align: center;
}

#loadDataModal {
  visibility: hidden;
  position: fixed;
  height: 100%;
  width: 0 auto;
  width: 100%;
  display: grid;
  background: var(--colourLightGrey);
  align-content: center;
  justify-content: center;
  align-items: end;
  z-index: 1;
  margin: 0 auto;
  padding: 0;
  opacity: 90%;
  justify-items: center;
}

#typewriter {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  white-space: nowrap; /* Keeps the content on a single line */
  color: var(--colourGreen);
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  padding: 2em 0; 
  letter-spacing: .15em; /* Adjust as needed */
  animation: typing 6s steps(100,start) infinite;
}

/* The typing effect */
@keyframes typing {
  0% { width: 0% }
  50% {width: 100%;}
  100% { width: 100% }
}

#myProgress {
  width: 100%;
  background-color: #ddd;
	position:relative;
	padding-top:75px;
}

#myBar {
  width: 1%;
  height: 30px;
  background-color: #04AA6D;
	  position:relative;
	padding-top:75px;
	  
}



/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: var(--colourLightGrey);

  margin: 15% auto; /* 15% from the top and centered */
  padding: 1em;
  border: none;
  width: max-content; /* Could be more or less, depending on screen size */
  text-align: center;
  border-radius: 0.3em;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 30%);
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}




/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: 30px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  font-size: 0.75em;
  font-weight: 100;
  opacity: 1;
}
