@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: local('Material Icons'),
  local('MaterialIcons-Regular'),
  url(/lib/MaterialSymbolsRounded[FILL,GRAD,opsz,wght].ttf) format('truetype');
}


.google_icon {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  margin-top: 4px;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';

  font-variation-settings: 'FILL' 1
}

/* CSS für die Drehung */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotating-icon {
  animation: spin 2s linear infinite;
  transform-origin: center;
}

.bold {
  font-weight: 500;
}

.hand {
  cursor: pointer;
}

#app {
  height: 100%;
}

html {
  transition: background-color 1s;
}

html, body {
  height: 100%;
  width: 100%;
  background-color: #3892D3;
  padding: 0;
  margin: 0;
}

html.loading {
  background: #333333 url(/resources/images/start.gif) no-repeat 50% 50%;
  cursor: progress;
  transition: background-color 0;
}

body {
  transition: opacity 1s ease-in;
  overflow: hidden;
}

html.loading body {
  opacity: 0;
  transition: opacity 0;
  visibility: hidden;
}

.webix_button, .webixbutton {
  font-size: 18px;
}

.webix_icon_btn {
  margin-right: 9px;
  margin-left: 6px;

  width: 24px;
  height: 24px;
}


.login-box {
  max-width: 400px;
  margin: auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.box-label-row{
  height: 110px !important;
}



.box-label {
  font-size: 20px;
  font-weight: bold;
  background-color: #fff;
  color: #007acc;
}

.box-label div {
  font-size: 90px !important;
  font-weight: 500 !important;
  background-color: #fff;
  /*height: 110px !important;*/
  /*line-height: 97px !important;*/
}

.box-user {
  font-size: 20px;
  font-weight: bold;
  background-color: #fff;
  color: #007acc;
}

.box-user div {
  font-size: 50px !important;
  font-weight: 500 !important;
  background-color: #fff;
  height: 110px !important;
  line-height: 97px !important;
  color: #06009b !important;
}



.product-box-container{
  height: 100% !important;
}

.product-box {
  background-color: #e0e5ec;
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100px !important;
}

.product-box-done {
  background-color: #a9e7a9;
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100px !important;
}

.product-box-text {
  font-size: 6vw;
  color: #333;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  height: 100%;
}

.product-box-number {
  font-size: 50px;
  line-height: 95px;
  color: #333;
  width: 137px;
  float: left;
  text-align: left;
}

.back-white{
  background-color: #fff;
}

#app-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: sans-serif;
}

#app-loader .spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #007acc;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 12px;
}

#app-loader .message {
  font-size: 18px;
  color: #007acc;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}