﻿@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/Rubik-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/Rubik-Bold.ttf") format("truetype");
}
* {
  touch-action: manipulation !important;
}

html, body {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  margin: 0;
  height: 100%;
  background-color: black;
  color: lightgrey;
  touch-action: manipulation;
}
html .loading, body .loading {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-highlight {
  user-select: none; /* Non-standard, for most browsers */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -webkit-tap-highlight-color: transparent; /* Removes highlight on tap */
  touch-action: manipulation;
}

#blazor-error-ui {
  background: #faf9f6;
  color: black;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
#blazor-error-ui .error {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
}
#blazor-error-ui .error .message {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 0 0.5rem;
}
#blazor-error-ui .error .reload {
  display: flex;
  align-items: center;
  justify-items: center;
  padding: 0.5rem 0.75rem;
  background-color: black;
  color: #faf9f6;
  border-radius: 0.25rem;
  text-decoration: none;
  cursor: pointer;
}
