#pre-bootstrap {
  background-color: white;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999999;
}

  /* These are here to make the loading time look like generally will after the Angular app is loaded to minimize the flickering and colour hanges on the code transition */
  #pre-bootstrap div.pre-load-navbar-simulator {
    background-color: #212529;
    font-family: Calibri, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
    font-size: 20px;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    height: 56px;
    width: 100%;
    display: block;
    margin-top: 0px;
    text-align: center;
    line-height: 50px;
  }

  #pre-bootstrap div.messaging {
    /*color: #FFFFFF; */
    color: black;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
    position: absolute;
    left: 0px;
    top: 65px;
    width: 100%;
    text-align: center;
  }

  #pre-bootstrap h1 {
    font-size: 30px;
    width: 100%;
    font-weight: normal;
    line-height: 50px;
    margin: 0 0 10px 0;
    text-align: center;
  }

  #pre-bootstrap p {
    font-size: 18px;
    width: 100%;
    text-align: center;
    line-height: 32px;
    margin: 0 0 0 0;
  }


.prebootShow {
  opacity: 1 !important;
}

.prebootStep {
  opacity: 0;
  transition: .5s ease-in-out all;
}



/*loader*/
/* Absolute Center Spinner */


.cs-loader {
  height: 100%;
  width: 100%;
}

.cs-loader-inner {
  margin-top: -1rem;
  width: 100%;
  color: #FFF;
  padding: 0 100px;
  text-align: center;
}

  .cs-loader-inner span {
    font-size: 20px;
    opacity: 0;
    display: inline-block;
    color: gray;
  }

@keyframes lol {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }

  33% {
    opacity: 1;
    transform: translateX(0px);
  }

  66% {
    opacity: 1;
    transform: translateX(0px);
  }

  100% {
    opacity: 0;
    transform: translateX(300px);
  }
}

@-webkit-keyframes lol {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-300px);
  }

  33% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }

  66% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(300px);
  }
}

.cs-loader-inner span:nth-child(6) {
  -webkit-animation: lol 3s infinite ease-in-out;
  animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner span:nth-child(5) {
  -webkit-animation: lol 3s 100ms infinite ease-in-out;
  animation: lol 3s 100ms infinite ease-in-out;
}

.cs-loader-inner span:nth-child(4) {
  -webkit-animation: lol 3s 200ms infinite ease-in-out;
  animation: lol 3s 200ms infinite ease-in-out;
}

.cs-loader-inner span:nth-child(3) {
  -webkit-animation: lol 3s 300ms infinite ease-in-out;
  animation: lol 3s 300ms infinite ease-in-out;
}

.cs-loader-inner span:nth-child(2) {
  -webkit-animation: lol 3s 400ms infinite ease-in-out;
  animation: lol 3s 400ms infinite ease-in-out;
}

.cs-loader-inner span:nth-child(1) {
  -webkit-animation: lol 3s 500ms infinite ease-in-out;
  animation: lol 3s 500ms infinite ease-in-out;
}

.no-select {
  user-select: none
}

h1, h2, h3, h4, h5, h6, label, th {
  user-select: none;
}


.leaflet-control-container .legend.leaflet-control {
  background-color: rgba(255, 255, 255, 0.5); /* white with 70% opacity */
}

.leaflet-control-attribution {
  display: none !important;
}

/* To make Leaflet not round out the edges of heatmap png images */
.leaflet-image-layer {
  image-rendering: pixelated; /* For modern browsers */
  image-rendering: crisp-edges; /* For broader compatibility */
}
