.linear-preloader {
  position: fixed;
  top: 77;
  left: 0;
  width: 100%;
  height: 2px;
  /* background-color: #f3f3f3; */
  z-index: 9999;
  display: none; /* Initially hide the preloader */
}

.linear-loader {
  height: 100%;
  width: 0;
  background-color: #79c4c1;
  animation: linear-load .5s linear infinite;
}

@keyframes linear-load {
  0% { width: 0; }
  100% { width: 100%; }
}

#content {
  display: none;
}