@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&family=Raleway:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
:root {
  --primary-txt-color: #0E1116;
  --secondary-txt-color: #EEF8FC;
  --heading-color: #22577A;
  --link-color: #38A3A5;
  --menu-link-color: var(--sl-color-primary-200);
  --body-bg: #EEF8FC;
  --primary-font-family: "Inter", sans-serif;
  --secondary-font-family: "Raleway", sans-serif;
  --brand-color: #22577A;
  --sl-color-primary-50: #b2d3e9;
  --sl-color-primary-100: #8abdde;
  --sl-color-primary-200: #62a6d3;
  --sl-color-primary-300: #3a90c8;
  --sl-color-primary-400: #2d73a2;
  --sl-color-primary-500: #22577A;
  --sl-color-primary-600: #173b52;
  --sl-color-primary-700: #0c1e2a;
  --sl-color-primary-800: #010202;
  --sl-color-primary-900: black;
  --sl-focus-ring-color-primary: rgba(34, 87, 122, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--primary-txt-color);
  font-family: var(--primary-font-family);
  font-weight: 200;
  background: var(--body-bg);
  height: 100vh;
}

#root {
  height: 100vh;
}

h1, h2, h3, h5, h6 {
  font-family: var(--secondary-font-family);
  color: var(--heading-color);
  font-weight: 700;
}

a {
  color: var(--link-color);
  font-weight: 400;
}

.cart-img {
  min-width: 100px;
  height: 100px;
  object-fit: cover;
  border: 2px var(--brand-color) solid;
  border-radius: var(--sl-border-radius-circle);
}

.app-splash {
  position: fixed;
  background: #fff;
  color: #777;
  display: flex;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.app-splash .app-logo {
  width: 100px;
  display: block;
  margin-bottom: 1em;
}

.large-text {
  font-size: 1.6em;
}

.brand-color {
  color: var(--brand-color);
}

.brand-color-bg {
  background: var(--brand-color);
}

.link-color {
  color: var(--link-color);
}

.logo-size {
  width: 50px;
}

.edit-image {
  min-width: 55px;
  height: 55px;
  object-fit: cover;
  border: 1px var(--brand-color) solid;
  border-radius: var(--sl-border-radius-circle);
}

.generic-entry {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  margin-bottom: 0.5em;
  padding: 1em;
  background: #fff;
}

.page-content {
  position: absolute;
  top: var(--app-header-height);
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  padding: 1em;
}
.page-content.no-pad {
  padding: 0;
}

.page-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-step {
  padding: 1em;
  margin: 1.5em auto;
  max-width: 600px;
}
.guide-step img {
  width: 100%;
  height: auto;
}

sl-dialog::part(title) {
  font-weight: 500;
  font-size: 1.6em;
}

sl-avatar {
  --size: 5em;
}

.avatar::part(image) {
  border: 2px var(--brand-color) solid;
}

@media all and (max-width: 768px) {
  sl-dialog::part(panel) {
    width: 100%;
    height: 100%;
    max-height: none;
    max-width: none;
  }
}
#toasts {
  position: fixed;
  left: 50%;
  top: 1em;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.toast-entry {
  background: #fff;
  margin: 0 auto;
  color: #333;
  border-radius: 200px;
  box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.14);
  padding: 0.7em 1.3em;
  font-size: 1em;
  margin-bottom: 0.25em;
  text-align: center;
  transition: all 0.2 ease;
}
.toast-entry.is-error {
  background: rgb(212, 25, 93);
  color: #fff;
}

/*# sourceMappingURL=/src.69849614.css.map */