/*
    FONTS
*/
/* Shell Icons */
@font-face {
  font-family: "shell-icons";
  src: url("../fonts/icon-211001.woff2") format("woff2"), url("../fonts/icon-211001.woff") format("woff"), url("../fonts/icon-211001.ttf") format("truetype"), url("../fonts/icon-211001.svg#icon-font") format("svg");
}
/* Shell Book (Regular) */
@font-face {
  font-family: "ShellFont";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/ShellBook.woff2") format("woff2"), url("../fonts/ShellBook.woff") format("woff"), url("../fonts/ShellBook.ttf") format("truetype"), url("../fonts/ShellBook.svg#ShellBook") format("svg");
}
/* Shell Light */
@font-face {
  font-family: "ShellFont";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/ShellLight.woff2") format("woff2"), url("../fonts/ShellLight.woff") format("woff"), url("../fonts/ShellLight.ttf") format("truetype"), url("../fonts/ShellLight.svg#ShellLight") format("svg");
}
/* Shell Medium */
@font-face {
  font-family: "ShellFont";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ShellMedium.woff2") format("woff2"), url("../fonts/ShellMedium.woff") format("woff"), url("../fonts/ShellMedium.ttf") format("truetype"), url("../fonts/ShellMedium.svg#ShellMedium") format("svg");
}
/* Shell Heavy */
@font-face {
  font-family: "ShellFont";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/ShellHeavy.woff2") format("woff2"), url("../fonts/ShellHeavy.woff") format("woff"), url("../fonts/ShellHeavy.ttf") format("truetype"), url("../fonts/ShellHeavy.svg#ShellHeavy") format("svg");
}
/* Shell Bold */
@font-face {
  font-family: "ShellFont";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/ShellBold.woff2") format("woff2"), url("../fonts/ShellBold.woff") format("woff"), url("../fonts/ShellBold.ttf") format("truetype"), url("../fonts/ShellBold.svg#ShellBold") format("svg");
}
*,
*::before,
*::after {
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-x pan-y;
  -webkit-touch-callout: none;
}

:focus {
  outline: 1px solid var(--color-primary);
}

:root {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  -webkit-text-size-adjust: none;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  min-width: 100%;
  background-color: var(--color-body-bg);
  color: var(--color-body-fg);
}

section,
header,
main,
footer {
  display: block;
}

button,
a[href] {
  cursor: pointer;
}

menu,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul,
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

pre {
  white-space: pre-wrap;
  margin: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1em;
}

:root {
  --color-primary: #FFC600;
  --color-primary-rgb: 255, 198, 0;
  --color-primary-bg: #FFC600;
  --color-primary-bg-rgb: 255, 198, 0;
  --color-primary-fg: #4a4a4a;
  --color-primary-fg-rgb: 74, 74, 74;
  --color-primary-inverted-bg: #0039ff;
  --color-primary-inverted-bg-rgb: 0, 57, 255;
  --color-primary-inverted-fg: #b5b5b5;
  --color-primary-inverted-fg-rgb: 181, 181, 181;
  --color-secondary: #DD1D21;
  --color-secondary-rgb: 221, 29, 33;
  --color-secondary-bg: #DD1D21;
  --color-secondary-bg-rgb: 221, 29, 33;
  --color-secondary-fg: #F4F4F4;
  --color-secondary-fg-rgb: 244, 244, 244;
  --color-secondary-inverted-bg: #22e2de;
  --color-secondary-inverted-bg-rgb: 34, 226, 222;
  --color-secondary-inverted-fg: #0b0b0b;
  --color-secondary-inverted-fg-rgb: 11, 11, 11;
  --color-tertiary: #0097A9;
  --color-tertiary-rgb: 0, 151, 169;
  --color-tertiary-bg: #0097A9;
  --color-tertiary-bg-rgb: 0, 151, 169;
  --color-tertiary-fg: #F4F4F4;
  --color-tertiary-fg-rgb: 244, 244, 244;
  --color-tertiary-inverted-bg: #ff6856;
  --color-tertiary-inverted-bg-rgb: 255, 104, 86;
  --color-tertiary-inverted-fg: #0b0b0b;
  --color-tertiary-inverted-fg-rgb: 11, 11, 11;
  --color-danger: #DD1D21;
  --color-danger-rgb: 221, 29, 33;
  --color-danger-bg: #DD1D21;
  --color-danger-bg-rgb: 221, 29, 33;
  --color-danger-fg: #F4F4F4;
  --color-danger-fg-rgb: 244, 244, 244;
  --color-danger-inverted-bg: #22e2de;
  --color-danger-inverted-bg-rgb: 34, 226, 222;
  --color-danger-inverted-fg: #0b0b0b;
  --color-danger-inverted-fg-rgb: 11, 11, 11;
  --color-warning: #ED8A00;
  --color-warning-rgb: 237, 138, 0;
  --color-warning-bg: #ED8A00;
  --color-warning-bg-rgb: 237, 138, 0;
  --color-warning-fg: #F4F4F4;
  --color-warning-fg-rgb: 244, 244, 244;
  --color-warning-inverted-bg: #1275ff;
  --color-warning-inverted-bg-rgb: 18, 117, 255;
  --color-warning-inverted-fg: #0b0b0b;
  --color-warning-inverted-fg-rgb: 11, 11, 11;
  --color-success: #8fb753;
  --color-success-rgb: 143, 183, 83;
  --color-success-bg: #8fb753;
  --color-success-bg-rgb: 143, 183, 83;
  --color-success-fg: #F4F4F4;
  --color-success-fg-rgb: 244, 244, 244;
  --color-success-inverted-bg: #7048ac;
  --color-success-inverted-bg-rgb: 112, 72, 172;
  --color-success-inverted-fg: #0b0b0b;
  --color-success-inverted-fg-rgb: 11, 11, 11;
  --color-info: #0097A9;
  --color-info-rgb: 0, 151, 169;
  --color-info-bg: #0097A9;
  --color-info-bg-rgb: 0, 151, 169;
  --color-info-fg: #F4F4F4;
  --color-info-fg-rgb: 244, 244, 244;
  --color-info-inverted-bg: #ff6856;
  --color-info-inverted-bg-rgb: 255, 104, 86;
  --color-info-inverted-fg: #0b0b0b;
  --color-info-inverted-fg-rgb: 11, 11, 11;
  --color-dark: #4a4a4a;
  --color-dark-rgb: 74, 74, 74;
  --color-dark-bg: #4a4a4a;
  --color-dark-bg-rgb: 74, 74, 74;
  --color-dark-fg: #F4F4F4;
  --color-dark-fg-rgb: 244, 244, 244;
  --color-dark-inverted-bg: #b5b5b5;
  --color-dark-inverted-bg-rgb: 181, 181, 181;
  --color-dark-inverted-fg: #0b0b0b;
  --color-dark-inverted-fg-rgb: 11, 11, 11;
  --color-medium: #959595;
  --color-medium-rgb: 149, 149, 149;
  --color-medium-bg: #959595;
  --color-medium-bg-rgb: 149, 149, 149;
  --color-medium-fg: #F4F4F4;
  --color-medium-fg-rgb: 244, 244, 244;
  --color-medium-inverted-bg: #6a6a6a;
  --color-medium-inverted-bg-rgb: 106, 106, 106;
  --color-medium-inverted-fg: #0b0b0b;
  --color-medium-inverted-fg-rgb: 11, 11, 11;
  --color-light: #F4F4F4;
  --color-light-rgb: 244, 244, 244;
  --color-light-bg: #F4F4F4;
  --color-light-bg-rgb: 244, 244, 244;
  --color-light-fg: #4a4a4a;
  --color-light-fg-rgb: 74, 74, 74;
  --color-light-inverted-bg: #0b0b0b;
  --color-light-inverted-bg-rgb: 11, 11, 11;
  --color-light-inverted-fg: #b5b5b5;
  --color-light-inverted-fg-rgb: 181, 181, 181;
  --color-body: #FFFFFF;
  --color-body-rgb: 255, 255, 255;
  --color-body-bg: #FFFFFF;
  --color-body-bg-rgb: 255, 255, 255;
  --color-body-fg: #4a4a4a;
  --color-body-fg-rgb: 74, 74, 74;
  --color-body-inverted-bg: black;
  --color-body-inverted-bg-rgb: 0, 0, 0;
  --color-body-inverted-fg: #b5b5b5;
  --color-body-inverted-fg-rgb: 181, 181, 181;
  --color-element: #EBEBEB;
  --color-element-rgb: 235, 235, 235;
  --color-element-bg: #EBEBEB;
  --color-element-bg-rgb: 235, 235, 235;
  --color-element-fg: #4a4a4a;
  --color-element-fg-rgb: 74, 74, 74;
  --color-element-inverted-bg: #141414;
  --color-element-inverted-bg-rgb: 20, 20, 20;
  --color-element-inverted-fg: #b5b5b5;
  --color-element-inverted-fg-rgb: 181, 181, 181;
  --color-sunset500: #D54410;
  --color-sunset500-rgb: 213, 68, 16;
  --color-sunset500-bg: #D54410;
  --color-sunset500-bg-rgb: 213, 68, 16;
  --color-sunset500-fg: #F4F4F4;
  --color-sunset500-fg-rgb: 244, 244, 244;
  --color-sunset500-inverted-bg: #2abbef;
  --color-sunset500-inverted-bg-rgb: 42, 187, 239;
  --color-sunset500-inverted-fg: #0b0b0b;
  --color-sunset500-inverted-fg-rgb: 11, 11, 11;
  --color-earth700: #743A1E;
  --color-earth700-rgb: 116, 58, 30;
  --color-earth700-bg: #743A1E;
  --color-earth700-bg-rgb: 116, 58, 30;
  --color-earth700-fg: #F4F4F4;
  --color-earth700-fg-rgb: 244, 244, 244;
  --color-earth700-inverted-bg: #8bc5e1;
  --color-earth700-inverted-bg-rgb: 139, 197, 225;
  --color-earth700-inverted-fg: #0b0b0b;
  --color-earth700-inverted-fg-rgb: 11, 11, 11;
  --color-sunrise300: #ED8A00;
  --color-sunrise300-rgb: 237, 138, 0;
  --color-sunrise300-bg: #ED8A00;
  --color-sunrise300-bg-rgb: 237, 138, 0;
  --color-sunrise300-fg: #F4F4F4;
  --color-sunrise300-fg-rgb: 244, 244, 244;
  --color-sunrise300-inverted-bg: #1275ff;
  --color-sunrise300-inverted-bg-rgb: 18, 117, 255;
  --color-sunrise300-inverted-fg: #0b0b0b;
  --color-sunrise300-inverted-fg-rgb: 11, 11, 11;
  --color-stone300: #B6B099;
  --color-stone300-rgb: 182, 176, 153;
  --color-stone300-bg: #B6B099;
  --color-stone300-bg-rgb: 182, 176, 153;
  --color-stone300-fg: #F4F4F4;
  --color-stone300-fg-rgb: 244, 244, 244;
  --color-stone300-inverted-bg: #494f66;
  --color-stone300-inverted-bg-rgb: 73, 79, 102;
  --color-stone300-inverted-fg: #0b0b0b;
  --color-stone300-inverted-fg-rgb: 11, 11, 11;
  --color-sand100: #E1DDA9;
  --color-sand100-rgb: 225, 221, 169;
  --color-sand100-bg: #E1DDA9;
  --color-sand100-bg-rgb: 225, 221, 169;
  --color-sand100-fg: #4a4a4a;
  --color-sand100-fg-rgb: 74, 74, 74;
  --color-sand100-inverted-bg: #1e2256;
  --color-sand100-inverted-bg-rgb: 30, 34, 86;
  --color-sand100-inverted-fg: #b5b5b5;
  --color-sand100-inverted-fg-rgb: 181, 181, 181;
  --color-seaweed300: #A8B11A;
  --color-seaweed300-rgb: 168, 177, 26;
  --color-seaweed300-bg: #A8B11A;
  --color-seaweed300-bg-rgb: 168, 177, 26;
  --color-seaweed300-fg: #F4F4F4;
  --color-seaweed300-fg-rgb: 244, 244, 244;
  --color-seaweed300-inverted-bg: #574ee5;
  --color-seaweed300-inverted-bg-rgb: 87, 78, 229;
  --color-seaweed300-inverted-fg: #0b0b0b;
  --color-seaweed300-inverted-fg-rgb: 11, 11, 11;
  --color-grass200: #A0C963;
  --color-grass200-rgb: 160, 201, 99;
  --color-grass200-bg: #A0C963;
  --color-grass200-bg-rgb: 160, 201, 99;
  --color-grass200-fg: #F4F4F4;
  --color-grass200-fg-rgb: 244, 244, 244;
  --color-grass200-inverted-bg: #5f369c;
  --color-grass200-inverted-bg-rgb: 95, 54, 156;
  --color-grass200-inverted-fg: #0b0b0b;
  --color-grass200-inverted-fg-rgb: 11, 11, 11;
  --color-forest500: #008557;
  --color-forest500-rgb: 0, 133, 87;
  --color-forest500-bg: #008557;
  --color-forest500-bg-rgb: 0, 133, 87;
  --color-forest500-fg: #F4F4F4;
  --color-forest500-fg-rgb: 244, 244, 244;
  --color-forest500-inverted-bg: #ff7aa8;
  --color-forest500-inverted-bg-rgb: 255, 122, 168;
  --color-forest500-inverted-fg: #0b0b0b;
  --color-forest500-inverted-fg-rgb: 11, 11, 11;
  --color-ocean400: #0097A9;
  --color-ocean400-rgb: 0, 151, 169;
  --color-ocean400-bg: #0097A9;
  --color-ocean400-bg-rgb: 0, 151, 169;
  --color-ocean400-fg: #F4F4F4;
  --color-ocean400-fg-rgb: 244, 244, 244;
  --color-ocean400-inverted-bg: #ff6856;
  --color-ocean400-inverted-bg-rgb: 255, 104, 86;
  --color-ocean400-inverted-fg: #0b0b0b;
  --color-ocean400-inverted-fg-rgb: 11, 11, 11;
  --color-sky400: #0097BB;
  --color-sky400-rgb: 0, 151, 187;
  --color-sky400-bg: #0097BB;
  --color-sky400-bg-rgb: 0, 151, 187;
  --color-sky400-fg: #F4F4F4;
  --color-sky400-fg-rgb: 244, 244, 244;
  --color-sky400-inverted-bg: #ff6844;
  --color-sky400-inverted-bg-rgb: 255, 104, 68;
  --color-sky400-inverted-fg: #0b0b0b;
  --color-sky400-inverted-fg-rgb: 11, 11, 11;
  --color-night600: #336094;
  --color-night600-rgb: 51, 96, 148;
  --color-night600-bg: #336094;
  --color-night600-bg-rgb: 51, 96, 148;
  --color-night600-fg: #F4F4F4;
  --color-night600-fg-rgb: 244, 244, 244;
  --color-night600-inverted-bg: #cc9f6b;
  --color-night600-inverted-bg-rgb: 204, 159, 107;
  --color-night600-inverted-fg: #0b0b0b;
  --color-night600-inverted-fg-rgb: 11, 11, 11;
  --color-violet500: #9A60A4;
  --color-violet500-rgb: 154, 96, 164;
  --color-violet500-bg: #9A60A4;
  --color-violet500-bg-rgb: 154, 96, 164;
  --color-violet500-fg: #F4F4F4;
  --color-violet500-fg-rgb: 244, 244, 244;
  --color-violet500-inverted-bg: #659f5b;
  --color-violet500-inverted-bg-rgb: 101, 159, 91;
  --color-violet500-inverted-fg: #0b0b0b;
  --color-violet500-inverted-fg-rgb: 11, 11, 11;
  --color-berry700: #86207C;
  --color-berry700-rgb: 134, 32, 124;
  --color-berry700-bg: #86207C;
  --color-berry700-bg-rgb: 134, 32, 124;
  --color-berry700-fg: #F4F4F4;
  --color-berry700-fg-rgb: 244, 244, 244;
  --color-berry700-inverted-bg: #79df83;
  --color-berry700-inverted-bg-rgb: 121, 223, 131;
  --color-berry700-inverted-fg: #0b0b0b;
  --color-berry700-inverted-fg-rgb: 11, 11, 11;
  --color-scale: 255, 255, 255;
  --color-scale-inverted: 0, 0, 0;
  --font-base: "ShellFont", Arial, Roboto, Helvetica, sans-serif;
  --font-headers: "ShellFont", Arial, Roboto, Helvetica, sans-serif;
  --font-legible: Arial, Roboto, Helvetica, sans-serif;
  --font-icons: "shell-icons";
  --font-monospace: "Consolas", monospace;
  --font-size-base: 16px;
}

:root::before {
  content: "";
  display: block;
  position: fixed;
  inset: 0 0 0 0;
  background-color: var(--color-body-bg);
  transition: opacity 0.4s ease-in-out;
  z-index: 9999;
}
:root::after {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  line-height: 1;
  translate: -50% -50%;
  transform-origin: 50% 50%;
  transition: opacity 0.4s ease-in-out, translate 0.4s ease-in-out;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cstyle%3E path %7B fill: none; stroke: %230097A9; stroke-width: 8; animation: spin 2s linear infinite; transform-origin: center; %7D @keyframes spin %7B 0%25 %7B rotate: 0deg; %7D 100%25 %7B rotate: 360deg; %7D %7D %3C/style%3E%3Cpath d='M 4 64 A 60 60 0 1 0 64 4' /%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 6rem;
  height: 6rem;
  backface-visibility: visible;
}
:root.loading::before, :root.loading::after {
  opacity: 1;
}
:root:not(.loading)::before, :root:not(.loading)::after {
  pointer-events: none;
  opacity: 0;
}
:root:not(.loading)::after {
  transition-delay: 0.32s;
}

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