@import url(https://fonts.googleapis.com/css2?family=Inconsolata&display=swap);
/**
 * Custom responsive text-align classes from:
 * https://github.com/quasarframework/quasar/issues/6665#issue-586393774
 */
.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media (min-width: 600px) {
  .text-sm-right {
    text-align: right;
  }
  .text-sm-left {
    text-align: left;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-justify {
    text-align: justify;
  }
}
@media (min-width: 1024px) {
  .text-md-right {
    text-align: right;
  }
  .text-md-left {
    text-align: left;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-justify {
    text-align: justify;
  }
}
@media (min-width: 1440px) {
  .text-lg-right {
    text-align: right;
  }
  .text-lg-left {
    text-align: left;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-justify {
    text-align: justify;
  }
}
@media (min-width: 1920px) {
  .text-xl-right {
    text-align: right;
  }
  .text-xl-left {
    text-align: left;
  }
  .text-xl-center {
    text-align: center;
  }
  .text-xl-justify {
    text-align: justify;
  }
}
/*
input:not([type]), input[type=text] {
  width: 100%;
  padding: 0.5rem;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}
*/
@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
* {
  touch-action: pan-x pan-y !important;
}

html {
  background: #37474f;
}

body {
  width: unset;
  display: inline-block;
}

header {
  width: 100vw !important;
  height: 60px;
}

* {
  touch-action: manipulation;
}

.section-header {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-label {
  font-size: 24px;
}

a {
  color: #0ec7cd;
  text-decoration: none;
}

.darkened-bg {
  background-color: rgba(0, 0, 0, 0.1);
}

.lighter-bg {
  background-color: rgba(255, 255, 255, 0.1);
}

.subtle {
  opacity: 0.5;
}

.very-subtle {
  opacity: 0.25;
}

.subtle-until-hovered {
  opacity: 0.5;
}
.subtle-until-hovered:hover {
  opacity: 1;
}

.very-subtle-until-hovered {
  opacity: 0.25;
}
.very-subtle-until-hovered:hover {
  opacity: 1;
}

::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.text-h1 {
  font-size: 1.9rem;
  line-height: 1.9rem;
}

.text-h2 {
  font-size: 1.7rem;
  line-height: 1.7rem;
}

.text-h3 {
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.text-h4 {
  font-size: 1.2rem;
  line-height: 1.2rem;
}

.text-h5 {
  font-size: 1.2rem;
  line-height: 1.2rem;
}

.text-form-caption {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.75;
}

.days-list {
  text-align: center;
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
}

.time-field {
  display: flex;
  margin: auto;
}

.report-form-btn {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

/* useful to keep elements in view when scrolling page horizontally (i.e.: on page with data-table) */
.sticky-left {
  position: sticky;
  left: 0;
  box-sizing: border-box;
}

/* make page container full window height */
.q-page-container {
  min-height: 100vh;
}

/*# sourceMappingURL=app.f42efc30.css.map*/