@font-face {
  font-display: swap;
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/GoogleSans/400.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../../fonts/GoogleSans/700.woff2') format('woff2');
}

:root {
  /* surfaces */
  --color-bg: #ffffff;
  --color-bg-rgb: 255 255 255;
  --color-bg-muted: #f0f5f9;
  --color-bg-muted-rgb: 240 245 249;
  --color-bg-contrast: #0d1821;
  --color-bg-contrast-rgb: 13 24 33;
  --color-bg-contrast-muted: #172b3a;
  --color-bg-contrast-muted-rgb: 23 43 58;

  --color-overlay-rgb: 0 0 0;
  --color-overlay-inverted-rgb: 255 255 255;

  /* text */
  --color-text: #0d1821;
  --color-text-rgb: 13 24 33;
  --color-text-muted: #172b3a;
  --color-text-muted-rgb: 23 43 58;
  --color-text-on-contrast: #ffffff;
  --color-text-on-contrast-rgb: 255 255 255;
  --color-text-on-contrast-muted: #f0f5f9;
  --color-text-on-contrast-muted-rgb: 240 245 249;

  /* accents */
  --color-accent: #ffe156;
  --color-accent-rgb: 255 225 86;
  --color-accent-hover: #ffe156;
  --color-text-on-accent: #0d1821;

  /* links */
  /* --color-link: var(--brand-600);
  --color-link-hover: var(--brand-500); */

  /* states */
  /* --color-success: #15803d;
  --color-warning: #b45309;
  --color-danger: #b91c1c;
  --color-info: #1d4ed8; */

  /* fonts */
  --font-family-main: 'Google Sans', sans-serif;
  --font-family-heading: 'Google Sans', sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  --font-size-xxs: 1.2rem;
  --font-size-xs: 1.4rem;
  --font-size-s: 1.6rem;
  --font-size-m: 1.8rem;
  --font-size-l: 2rem;
  --font-size-xl: 2.4rem;

  --font-size-default: var(--font-size-m);

  --font-size-h1: clamp(var(--font-size-default), 12vw, 5.2rem);
  --font-size-h2: clamp(var(--font-size-default), 11vw, 3.6rem);
  --font-size-h3: clamp(var(--font-size-default), 10vw, 3.2rem);
  --font-size-h4: clamp(var(--font-size-default), 9vw, 2.8rem);
  --font-size-h5: clamp(var(--font-size-default), 8vw, 2.4rem);
  --font-size-h6: clamp(var(--font-size-default), 7vw, 2rem);

  /* spacing */
  --space-s: 1.2rem;
  --space-m: 3.6rem;
  --space-l: 5.2rem;
  --space-xl: 7.2rem;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
  list-style: none;
  line-height: 1;
  border-radius: 0;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
}
html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}
body {
  color: var(--color-text);
  font-family: var(--font-family-main);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-default);
  background-color: var(--color-bg);
  word-wrap: break-word;
  width: 100%;
  height: 100%;
}
a,
button {
  cursor: pointer;
}
button {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}
input[type='number'] {
  appearance: textfield;
  -moz-appearance: textfield;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::placeholder,
textarea::placeholder {
  color: currentColor;
  opacity: 0.6;
}
.mdc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: middle;
  fill: currentColor;
}
.spacing {
  flex-shrink: 1;
  width: 100%;
  height: 100%;
  display: flex;
}

/*  */

.mt-xl {
  margin-top: var(--space-xl);
}

/*  */

.root {
  width: 100%;
  position: relative;
}

/*  */

.screen-reader-text {
  display: none !important;
}
