/*
 * Tailwind layers. `preflight` is disabled in tailwind.config.js, so MUI's
 * CssBaseline remains the single normaliser and the two libraries do not
 * compete over base element styles.
 */
.\!container {
  width: 100% !important;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .\!container {
    max-width: 640px !important;
  }
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .\!container {
    max-width: 768px !important;
  }
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .\!container {
    max-width: 1024px !important;
  }
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .\!container {
    max-width: 1280px !important;
  }
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .\!container {
    max-width: 1536px !important;
  }
  .container {
    max-width: 1536px;
  }
}
#root .\!visible {
  visibility: visible !important;
}
#root .visible {
  visibility: visible;
}
#root .collapse {
  visibility: collapse;
}
#root .static {
  position: static;
}
#root .fixed {
  position: fixed;
}
#root .sticky {
  position: -webkit-sticky;
  position: sticky;
}
#root .\!my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
#root .\!my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}
#root .\!my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
#root .\!my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}
#root .\!my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
#root .mx-auto {
  margin-left: auto;
  margin-right: auto;
}
#root .my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
#root .\!mb-1 {
  margin-bottom: 0.25rem !important;
}
#root .\!mb-2 {
  margin-bottom: 0.5rem !important;
}
#root .\!mb-3 {
  margin-bottom: 0.75rem !important;
}
#root .\!mb-4 {
  margin-bottom: 1rem !important;
}
#root .\!mb-6 {
  margin-bottom: 1.5rem !important;
}
#root .\!ml-1 {
  margin-left: 0.25rem !important;
}
#root .\!mt-1 {
  margin-top: 0.25rem !important;
}
#root .\!mt-2 {
  margin-top: 0.5rem !important;
}
#root .\!mt-3 {
  margin-top: 0.75rem !important;
}
#root .\!mt-4 {
  margin-top: 1rem !important;
}
#root .\!mt-6 {
  margin-top: 1.5rem !important;
}
#root .mb-1 {
  margin-bottom: 0.25rem;
}
#root .mb-2 {
  margin-bottom: 0.5rem;
}
#root .mb-3 {
  margin-bottom: 0.75rem;
}
#root .mb-4 {
  margin-bottom: 1rem;
}
#root .mb-6 {
  margin-bottom: 1.5rem;
}
#root .ml-auto {
  margin-left: auto;
}
#root .mr-2 {
  margin-right: 0.5rem;
}
#root .mt-2 {
  margin-top: 0.5rem;
}
#root .mt-4 {
  margin-top: 1rem;
}
#root .mt-5 {
  margin-top: 1.25rem;
}
#root .mt-6 {
  margin-top: 1.5rem;
}
#root .mt-8 {
  margin-top: 2rem;
}
#root .block {
  display: block;
}
#root .inline-block {
  display: inline-block;
}
#root .flex {
  display: flex;
}
#root .table {
  display: table;
}
#root .grid {
  display: grid;
}
#root .hidden {
  display: none;
}
#root .h-screen {
  height: 100vh;
}
#root .max-h-80 {
  max-height: 20rem;
}
#root .\!min-h-16 {
  min-height: 4rem !important;
}
#root .min-h-\[60vh\] {
  min-height: 60vh;
}
#root .min-h-screen {
  min-height: 100vh;
}
#root .w-full {
  width: 100%;
}
#root .min-w-0 {
  min-width: 0px;
}
#root .max-w-2xl {
  max-width: 42rem;
}
#root .max-w-4xl {
  max-width: 56rem;
}
#root .max-w-lg {
  max-width: 32rem;
}
#root .max-w-md {
  max-width: 28rem;
}
#root .max-w-sm {
  max-width: 24rem;
}
#root .max-w-xl {
  max-width: 36rem;
}
#root .max-w-xs {
  max-width: 20rem;
}
#root .flex-1 {
  flex: 1 1 0%;
}
#root .grow {
  flex-grow: 1;
}
#root .cursor-pointer {
  cursor: pointer;
}
#root .grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
#root .grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#root .grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
#root .flex-col {
  flex-direction: column;
}
#root .flex-wrap {
  flex-wrap: wrap;
}
#root .items-start {
  align-items: flex-start;
}
#root .items-end {
  align-items: flex-end;
}
#root .items-center {
  align-items: center;
}
#root .items-baseline {
  align-items: baseline;
}
#root .justify-end {
  justify-content: flex-end;
}
#root .justify-center {
  justify-content: center;
}
#root .justify-between {
  justify-content: space-between;
}
#root .gap-0\.5 {
  gap: 0.125rem;
}
#root .gap-1 {
  gap: 0.25rem;
}
#root .gap-1\.5 {
  gap: 0.375rem;
}
#root .gap-2 {
  gap: 0.5rem;
}
#root .gap-3 {
  gap: 0.75rem;
}
#root .gap-4 {
  gap: 1rem;
}
#root .gap-6 {
  gap: 1.5rem;
}
#root .gap-x-4 {
  column-gap: 1rem;
}
#root .overflow-auto {
  overflow: auto;
}
#root .truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#root .whitespace-nowrap {
  white-space: nowrap;
}
#root .break-words {
  overflow-wrap: break-word;
}
#root .break-all {
  word-break: break-all;
}
#root .rounded {
  border-radius: 0.25rem;
}
#root .rounded-lg {
  border-radius: 0.5rem;
}
#root .border {
  border-width: 1px;
}
#root .border-b {
  border-bottom-width: 1px;
}
#root .border-brand-900 {
  --tw-border-opacity: 1;
  border-color: rgb(20 83 45 / var(--tw-border-opacity, 1));
}
#root .border-surface-border {
  --tw-border-opacity: 1;
  border-color: rgb(227 232 239 / var(--tw-border-opacity, 1));
}
#root .bg-\[\#f5f7fa\] {
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
}
#root .bg-brand-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 247 242 / var(--tw-bg-opacity, 1));
}
#root .bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
#root .bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
#root .bg-surface-muted {
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
}
#root .p-12 {
  padding: 3rem;
}
#root .p-3 {
  padding: 0.75rem;
}
#root .p-4 {
  padding: 1rem;
}
#root .p-5 {
  padding: 1.25rem;
}
#root .p-6 {
  padding: 1.5rem;
}
#root .p-8 {
  padding: 2rem;
}
#root .\!py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
#root .px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
#root .px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
#root .px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
#root .py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
#root .py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
#root .py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#root .py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
#root .py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#root .\!pt-0 {
  padding-top: 0px !important;
}
#root .pb-2 {
  padding-bottom: 0.5rem;
}
#root .pr-4 {
  padding-right: 1rem;
}
#root .text-left {
  text-align: left;
}
#root .text-center {
  text-align: center;
}
#root .text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
#root .font-bold {
  font-weight: 700;
}
#root .font-medium {
  font-weight: 500;
}
#root .font-semibold {
  font-weight: 600;
}
#root .leading-tight {
  line-height: 1.25;
}
#root .text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
#root .underline {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
#root .line-through {
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
}
#root .opacity-70 {
  opacity: 0.7;
}
#root .opacity-80 {
  opacity: 0.8;
}
#root .opacity-90 {
  opacity: 0.9;
}
#root .filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
#root .transition {
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

:root {
  --geolab-header-height: 64px;
  --geolab-sidebar-width: 264px;
}

html,
body,
#root {
  height: 100%;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbars: subtle, and consistent across the data-heavy laboratory tables. */
* {
  scrollbar-width: thin;
  scrollbar-color: #c4cbd6 transparent;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-thumb {
  background-color: #c4cbd6;
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #9aa4b2;
}

/* SweetAlert2 must sit above MUI dialogs (1300) and snackbars (1400). */
.swal2-container {
  z-index: 1500 !important;
}
#root .last\:border-0:last-child {
  border-width: 0px;
}
#root .hover\:bg-surface-muted:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
}
@media (min-width: 640px) {
  #root .sm\:flex {
    display: flex;
  }
  #root .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #root .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  #root .sm\:p-6 {
    padding: 1.5rem;
  }
  #root .sm\:p-8 {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  #root .md\:block {
    display: block;
  }
  #root .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  #root .lg\:sticky {
    position: -webkit-sticky;
    position: sticky;
  }
  #root .lg\:top-24 {
    top: 6rem;
  }
  #root .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  #root .lg\:flex {
    display: flex;
  }
  #root .lg\:w-1\/2 {
    width: 50%;
  }
  #root .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  #root .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  #root .lg\:p-8 {
    padding: 2rem;
  }
}
@media (min-width: 1280px) {
  #root .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/*# sourceMappingURL=main.161bf828.css.map*/