/* google front import */
@import url("font.css");

html,
body {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif !important;
  /* opacity: 0; */
  transition: opacity 0.4s ease;
}

body.loaded {
  opacity: 1;
}

.ok {
  position: absolute;
  top: 64px;
  right: 20px;
  width: 150px;
  background-color: grey;
  padding: 4px;
  color: black;
  font-size: 14px;
}

#instruction-text {
  transition: opacity 0.4s ease, transform 0.3s ease;
  color: black;
}

/* Loading bar container */
#page-loading-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(135deg, #34c759 0%, #30db5b 100%);
  transition: width 0.35s ease-out, opacity 0.25s ease-out;
  z-index: 99999;
  opacity: 0; /* hidden by default */
}
