section.svelte-uptbcz {
  width: 100%;
  height: 100vh;
}

#nav.svelte-uptbcz {
  display: none;
}

@font-face {
  font-family: "Manrope";
  font-weight: 200;
  font-display: swap;
  src: url("./fonts/Manrope-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-weight: 300;
  font-display: swap;
  src: url("./fonts/Manrope-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-weight: 400;
  src: url("./fonts/Manrope-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/Manrope-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/Manrope-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/Manrope-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-weight: 800;
  font-display: swap;
  src: url("./fonts/Manrope-ExtraBold.ttf") format("truetype");
} /*!
* fullPage 3.0.7
* https://github.com/alvarotrigo/fullPage.js
*
* @license GPLv3 for open source use only
* or Fullpage Commercial License for commercial use
* http://alvarotrigo.com/fullPage/pricing/
*
* Copyright (C) 2018 http://alvarotrigo.com/fullPage - A project by Alvaro Trigo
*/
html.fp-enabled,
.fp-enabled body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fp-section {
  position: relative;
  -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
  -moz-box-sizing: border-box; /* <=28 */
  box-sizing: border-box;
}

.fp-slide {
  float: left;
}

.fp-slide,
.fp-slidesContainer {
  display: block;
  height: 100%;
}

.fp-slides {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
  transition: all 0.3s ease-out;
}

.fp-section.fp-table,
.fp-slide.fp-table {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.fp-tableCell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.fp-slidesContainer {
  position: relative;
  float: left;
}

.fp-controlArrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -38px;
  cursor: pointer;
  -webkit-user-select: none; /* webkit (safari, chrome) browsers */
  -moz-user-select: none; /* mozilla browsers */
  -ms-user-select: none; /* IE10+ */
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border-style: solid;
  -khtml-user-select: none; /* webkit (konqueror) browsers */
}

.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent;
}

.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff;
}

.fp-scrollable {
  position: relative;
  overflow: hidden;
}

.fp-scroller {
  overflow: hidden;
}

.iScrollIndicator {
  border: 0 !important;
}

.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}

#fp-nav {
  position: fixed;
  z-index: 100;
  top: 50%;
  margin-top: -32px;
  -webkit-transform: translate3d(0, 0, 0);
  opacity: 1;
}

#fp-nav.fp-right {
  right: 17px;
}

#fp-nav.fp-left {
  left: 17px;
}

.fp-slidesNav {
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0 !important;
  margin: 0 auto !important;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fp-slidesNav.fp-bottom {
  bottom: 17px;
}

.fp-slidesNav.fp-top {
  top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
  position: relative;
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
}

.fp-slidesNav ul li {
  display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  /* width: 12px; */
  /* height: 12px; */
  /* margin: -6px 0 0 -5px; */
  border-radius: 100%;
  background: #333;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  /* width: 6px; */
  /* height: 6px; */
  /* margin: -2px 0 0 -2px; */
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  /* border: solid 1px #333; */
  border-radius: 50%;
  /* background: #333; */
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  /* width: 10px; */
  /* height: 10px; */
  margin: -5px 0px 0px -5px;
}

#fp-nav ul li .fp-tooltip {
  position: absolute;
  top: -2px;
  display: block;
  overflow: hidden;
  width: 0;
  max-width: 220px;
  cursor: pointer;
  white-space: nowrap;
  opacity: 0;
  color: #fff;
  font-family: arial, helvetica, sans-serif;
  font-size: 14px;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
  width: auto;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  opacity: 1;
}

#fp-nav ul li .fp-tooltip.fp-right {
  right: 20px;
}

#fp-nav ul li .fp-tooltip.fp-left {
  left: 20px;
}

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
  height: auto !important;
}

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
  height: auto !important;
}

/*Only display content to screen readers*/
.fp-sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  padding: 0;
  white-space: nowrap;
  border: 0;
}

* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  scroll-snap-type: y mandatory;
}

a,
a:hover,
a:visited {
  color: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}

button:active {
  color: inherit;
}

#fp-nav.fp-right {
  right: 8px;
}

#fp-nav {
  background: #fff;
  border-radius: 5px;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  height: 9px;
  width: 9px;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  height: 9px;
  width: 9px;
  border: none;
  background: #e4e4e4;
  margin: -5px 0 0 -5px;
}

/*  */
.chart__title {
  font-size: 12px;
  font-weight: 800;
}

/*  */
.series-path {
  fill: none;
  stroke: #ccc;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke 0.5s;
  stroke-linejoin: round;
}

/* No Change */
.theme--red .series--tinted .series-path {
  stroke: var(--red-light);
}

.theme--red .series--highlighted .series-path {
  stroke: var(--red);
}

.theme--red .series-label-background {
  fill: var(--red);
}

/* Spike */
.theme--yellow .series--tinted .series-path {
  stroke: var(--yellow-light);
}

.theme--yellow .series--highlighted .series-path {
  stroke: var(--yellow);
}

.theme--yellow .series-label-background {
  fill: var(--yellow);
}

/* Sustained */
.theme--blue .series--tinted .series-path {
  stroke: var(--blue-light);
}

.theme--blue .series--highlighted .series-path {
  stroke: var(--blue);
}

.theme--blue .series-label-background {
  fill: var(--blue);
}

/* Label */
.series-label-text {
  letter-spacing: 0.1em;
  /* opacity: 0; */
  font-size: 16px;
  font-size: 16px;
  font-weight: 800;
  fill: #fff;
  dominant-baseline: central;
  text-anchor: middle;
}

.series--selected .series-label-text {
  /* opacity: 1; */
}

/* Label background */
/*

.series-label-background {
	opacity: 0;
}

.series--selected .series-label-background {
	opacity: 1;
}

*/
/* Group with all series, highlighed transitions */
.series--highlighted .series--deselected,
.series--highlighted .series--selected {
  pointer-events: none;
  transition: opacity 0.5s;
}

.series--highlighted .series--deselected {
  opacity: 0;
}

.series--highlighted .series--selected {
  opacity: 1;
}

/* Axis */
.axis__tick {
  stroke-width: 1;
  stroke: #dcdcdc;
}

.axis__label {
  font-size: 14px;
  line-height: 18px;
  fill: #000;
  /* dominant-baseline: middle; */
}

.axis__label--centered {
  text-anchor: middle;
}

.axis__label--bold {
  font-weight: 700;
}

:root {
  --blue: #61bedf;
  --blue-light: #d0ecf6;
  --red: #f87564;
  --red-light: #fdd6d1;
  --yellow: #f4cf27;
  --yellow-light: #f9eebb;
  --light-gray: #dcdcdc;
}

header.svelte-1heoac3 {
  position: fixed;
  z-index: 9999;
  top: 0px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  padding: 9px 10px 9px 20px;
  letter-spacing: 0;
  color: #000;
  border-bottom: 1px solid #f4f4f4;
  background: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
}

.header-section.svelte-1heoac3 {
  min-width: 128px;
}

.middle.svelte-1heoac3 {
  width: 100%;
}

.right.svelte-1heoac3 {
  transform: scale(0.9);
  text-align: right;
}

.home-button-container.svelte-1heoac3 {
  position: fixed;
  top: 13px;
  left: 50%;
  transform: translate(-50%, 0);
}

button.svelte-1heoac3 {
  margin: 0;
  padding: 0;
  transition: opacity 0.5s;
  white-space: nowrap;
  border: 0;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
}

@media (hover: hover) {
  button.svelte-1heoac3:hover {
    opacity: 0.5;
  }
}
.background.svelte-nay6rl.svelte-nay6rl {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.background.svelte-nay6rl svg.svelte-nay6rl {
  width: 100%;
  height: 100%;
}

.axis__line.svelte-nay6rl.svelte-nay6rl {
  stroke-width: 2;
  stroke: #f4f4f4;
}

.nav-arrow-container.svelte-amfdbg {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 75px;
  transition: opacity 0.5s, transform 0.5s;
  opacity: 1;
  font-size: 16px;
  font-weight: 700;
}

.nav-arrow.svelte-amfdbg {
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.nav-arrow.arrow-first.svelte-amfdbg {
  flex-direction: column-reverse;
  justify-content: flex-end;
}

img.svelte-amfdbg {
  width: 28px;
  margin: 10px 0;
}

@media (hover: hover) {
  .nav-arrow-container.svelte-amfdbg:hover {
    opacity: 0.5;
  }
}
.modal-container.svelte-1hpkxuu {
  position: fixed;
  z-index: 99999;
  top: 0;
  background-color: rgba(255, 255, 255, 0);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  transition: transform 0.5s, background-color 0.5s;
  transform: translate(0, -100vh);
}

.modal--open.svelte-1hpkxuu {
  transform: translate(0, 0);
  background-color: rgba(255, 255, 255, 0.75);
}

.close-button.svelte-1hpkxuu {
  position: absolute;
  top: 20px;
  right: 0px;
  margin-right: 20px;
  cursor: pointer;
}

.close-button.svelte-1hpkxuu:hover {
  opacity: 75%;
}

.modal-content.svelte-1hpkxuu {
  position: absolute;
  top: 10vh;
  left: 10vw;
  width: 80vw;
  height: 80vh;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 600px) {
  .modal-content.svelte-1hpkxuu {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.grid.svelte-16iboe3 {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  margin: auto;
}

@media screen and (max-width: 600px) {
  .grid.svelte-16iboe3 {
    overflow: auto;
    height: auto;
  }
}
.selected.svelte-1ko5hz7.svelte-1ko5hz7 {
  position: fixed;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  padding: 80px 0 0 0;
  transition: opacity 1s, transform 1s;
  transform-origin: top left;
  background: #fff;
}

.controls.svelte-1ko5hz7 button.svelte-1ko5hz7 {
  transition: opacity 0.5s, transform 0.5s;
  opacity: 1;
  border: 0;
  background-color: transparent;
}

.control__toggle.svelte-1ko5hz7.svelte-1ko5hz7 {
  position: absolute;
  z-index: 9999;
  top: 95px;
  left: 50%;
  display: flex;
  overflow: hidden;
  height: 30px;
  transform: translate(-50%, 0);
  background: #fff;
  font-size: 16px;
}

.control__toggle.svelte-1ko5hz7 button.svelte-1ko5hz7 {
  margin: 0;
  padding: 0 18px;
  transition: opacity 0.5s;
  white-space: nowrap;
  opacity: 1;
  border: 0;
  border-radius: 6px;
  background-color: transparent;
  font-weight: 800;
  line-height: 30px;
}

.control__toggle.svelte-1ko5hz7 button.highlighted.svelte-1ko5hz7 {
  color: #fff;
  border-radius: 5px;
}

.theme--blue.svelte-1ko5hz7 .control__toggle button.highlighted.svelte-1ko5hz7 {
  background: var(--blue);
}

.theme--red.svelte-1ko5hz7 .control__toggle button.highlighted.svelte-1ko5hz7 {
  background: var(--red);
}

.theme--yellow.svelte-1ko5hz7 .control__toggle button.highlighted.svelte-1ko5hz7 {
  background: var(--yellow);
}

.navigation-controls.svelte-1ko5hz7 button.svelte-1ko5hz7 {
  width: 120px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.previous-control.svelte-1ko5hz7.svelte-1ko5hz7, .next-control.svelte-1ko5hz7.svelte-1ko5hz7, .close-control.svelte-1ko5hz7.svelte-1ko5hz7, .share-control.svelte-1ko5hz7.svelte-1ko5hz7 {
  position: absolute;
  z-index: 999;
}

.previous-control.svelte-1ko5hz7.svelte-1ko5hz7, .next-control.svelte-1ko5hz7.svelte-1ko5hz7 {
  height: 48px;
}

.previous-control.svelte-1ko5hz7.svelte-1ko5hz7 {
  top: calc(50vh - 60px);
  left: 36px;
}

.next-control.svelte-1ko5hz7.svelte-1ko5hz7 {
  top: calc(50vh - 60px);
  right: 36px;
}

.previous-control.svelte-1ko5hz7.svelte-1ko5hz7::after, .next-control.svelte-1ko5hz7.svelte-1ko5hz7::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 48px;
  height: 48px;
  content: "";
  transform: translate(-50%, 0);
  background-repeat: no-repeat;
  background-position: center;
}

.previous-control.svelte-1ko5hz7.svelte-1ko5hz7::after {
  background-image: url("./images/left.svg");
}

.next-control.svelte-1ko5hz7.svelte-1ko5hz7::after {
  background-image: url("./images/right.svg");
}

.close-control.svelte-1ko5hz7.svelte-1ko5hz7, .share-control.svelte-1ko5hz7.svelte-1ko5hz7 {
  width: 55px;
  height: 55px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.close-control.svelte-1ko5hz7.svelte-1ko5hz7 {
  top: 60px;
  right: calc(10vw + 60px - 12px);
  background-image: url("./images/close.svg");
  background-size: 60px;
}

.share-control.svelte-1ko5hz7.svelte-1ko5hz7 {
  top: 60px;
  right: calc(10vw + 120px - 12px);
  background-image: url("./images/download.svg");
  background-size: 60px;
}

.wrapper.svelte-1ko5hz7.svelte-1ko5hz7 {
  position: absolute;
  left: 10vw;
  width: 80vw;
}

.header.svelte-1ko5hz7.svelte-1ko5hz7 {
  margin: 0 auto 30px auto;
  padding: 0 30px;
}

.header__keyword.svelte-1ko5hz7.svelte-1ko5hz7 {
  margin: 0;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 800;
  line-height: 48px;
}

.header__category.svelte-1ko5hz7.svelte-1ko5hz7 {
  margin: 0;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
}

@media (hover: hover) {
  .controls.svelte-1ko5hz7 button.svelte-1ko5hz7:hover {
    opacity: 0.5;
  }
  .control__toggle.svelte-1ko5hz7 button.svelte-1ko5hz7:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 600px) {
  .selected.svelte-1ko5hz7.svelte-1ko5hz7 {
    position: fixed;
    top: 0;
    left: 0;
  }
  .wrapper.svelte-1ko5hz7.svelte-1ko5hz7 {
    top: 60px;
    right: 0;
    left: 0;
    width: 100%;
  }
  .header.svelte-1ko5hz7.svelte-1ko5hz7 {
    height: 150px;
    margin: 12px 0 0 0;
    font-size: 36px;
  }
  .header__keyword.svelte-1ko5hz7.svelte-1ko5hz7 {
    font-size: 30px;
    line-height: 1;
  }
  .header__category.svelte-1ko5hz7.svelte-1ko5hz7 {
    font-size: 18px;
  }
  .model-score-container.svelte-1ko5hz7.svelte-1ko5hz7 {
    position: absolute;
    top: 90px;
    width: 80vw;
    margin: 0 auto;
  }
  .navigation-controls.svelte-1ko5hz7.svelte-1ko5hz7 {
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 150px;
    border-top: 2px solid #f4f4f4;
  }
  .navigation__control.svelte-1ko5hz7.svelte-1ko5hz7 {
    position: relative;
    display: flex;
    align-items: center;
    flex: 50% 0 0;
    justify-content: center;
    height: 100%;
    padding: 18px 0 0 0;
  }
  .navigation__control.svelte-1ko5hz7.svelte-1ko5hz7:not(:last-child) {
    border-right: 2px solid #f4f4f4;
  }
  .previous-control.svelte-1ko5hz7.svelte-1ko5hz7, .next-control.svelte-1ko5hz7.svelte-1ko5hz7 {
    top: auto;
    right: auto;
    left: auto;
  }
  .previous-control.svelte-1ko5hz7.svelte-1ko5hz7::after {
    top: -48px;
    left: 50%;
  }
  .next-control.svelte-1ko5hz7.svelte-1ko5hz7::after {
    top: -48px;
    left: 50%;
  }
  .close-control.svelte-1ko5hz7.svelte-1ko5hz7 {
    top: 12px;
    right: 36px;
  }
  .share-control.svelte-1ko5hz7.svelte-1ko5hz7 {
    top: 12px;
    right: 96px;
  }
}
.about-container.svelte-1xy46qc {
  display: grid;
  width: 80vw;
  height: 100%;
  margin: 0 10vw;
  padding: 10vh 0;
  grid-template-columns: 60vw 20vw;
  grid-template-rows: auto;
  grid-template-areas: "methods share";
  grid-auto-rows: min-content;
}

.attrib-container.svelte-1xy46qc {
  grid-area: attrib;
}

.box-container.svelte-1xy46qc {
  display: flex;
}

.box-content.svelte-1xy46qc {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.share-container.svelte-1xy46qc {
  padding-bottom: 10vh;
  grid-area: share;
}

.share-links-container.svelte-1xy46qc {
  display: flex;
  flex-direction: column;
}

.credits-container.svelte-1xy46qc {
  margin-top: 40px;
}

.methods-container.svelte-1xy46qc {
  padding-right: 5vw;
  padding-bottom: 20%;
  grid-area: methods;
}

h1.svelte-1xy46qc {
  margin-bottom: 10px;
  font-size: 18px;
  font-style: bold;
  line-height: 24px;
}

ul.svelte-1xy46qc {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a.svelte-1xy46qc {
  transition: border-bottom 0.2s, color 0.2s;
  text-decoration: none;
  border-bottom: 1px solid black;
}

@media (hover: hover) {
  a.svelte-1xy46qc:hover {
    transition: border-bottom 0.2s, color 0.2s;
    color: var(--blue);
    border-bottom: 1px solid transparent;
  }
}
@media screen and (max-width: 600px) {
  .about-container.svelte-1xy46qc {
    width: 100vw;
    margin: 0px;
    padding: 20px;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: "methods" "share";
  }
  .share-container.svelte-1xy46qc {
    margin-top: 40px;
  }
  .methods-container.svelte-1xy46qc {
    padding-right: 0px;
    padding-bottom: 0px;
  }
}
.share__chart.svelte-oty0ht {
  position: fixed;
  z-index: 9999;
  top: 90px;
  left: 90px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #fff;
}

.shareImage.svelte-oty0ht {
  display: none;
}

.share__controls.svelte-oty0ht {
  position: absolute;
  top: 0;
  right: -90px;
}

.message.svelte-zjxgsd {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  display: none;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  text-align: center;
  background: #fff;
}

@media only screen and (max-height: 480px) {
  .message.svelte-zjxgsd {
    display: flex;
  }
}
.intro-container.svelte-1oayb1i {
  height: 100vh;
  margin: 0 10vw;
  padding-top: 20vh;
}

.intro-container.svelte-1oayb1i h2 {
  font-family: "Manrope", sans-serif;
}

.intro-container.svelte-1oayb1i b {
  font-weight: 800;
}

.intro-container.svelte-1oayb1i .normal {
  color: var(--red);
}

.intro-container.svelte-1oayb1i .unusual {
  color: var(--yellow);
}

.intro-container.svelte-1oayb1i .new-normal {
  color: var(--blue);
}

h2.svelte-1oayb1i {
  width: 80vw;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3em;
}

@media screen and (max-width: 1024px) {
  h2.svelte-1oayb1i {
    font-size: 38px;
  }
}
@media screen and (max-width: 600px) {
  h2.svelte-1oayb1i {
    font-size: 32px;
  }
}
.shape-mobile-card.svelte-1vnge70.svelte-1vnge70 {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10vh 0;
  background-color: white;
  z-index: -1;
}

.shape-mobile-card.svelte-1vnge70 .shape-heading.svelte-1vnge70 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.shape-mobile-card.svelte-1vnge70 .shape-heading h1.svelte-1vnge70 {
  font-weight: 800;
  font-size: 36px;
  line-height: 125%;
  letter-spacing: -2.2%;
  margin: 0 10px;
  text-transform: uppercase;
}

.shape-mobile-card.svelte-1vnge70 .shape-heading .shape-icon-container.svelte-1vnge70 {
  z-index: -1;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shape-mobile-card.svelte-1vnge70 .shape-heading .unusual-icon.svelte-1vnge70 {
  transform: translate(0, -3px);
}

.shape-mobile-card.svelte-1vnge70 .shape-heading img.svelte-1vnge70 {
  width: 45px;
}

.shape-mobile-card.svelte-1vnge70 .chart-container.svelte-1vnge70 {
  width: 100%;
  height: 70vh;
  align-self: flex-end;
  margin: 50px 0;
}

.description.svelte-1vnge70.svelte-1vnge70 {
  font-size: 18px;
  line-height: 22.5px;
  letter-spacing: 1.25;
  text-align: center;
  padding-top: 15px;
}

.description.svelte-1vnge70 span {
  font-weight: 600;
}

.description.svelte-1vnge70 .normal {
  color: var(--red);
}

.description.svelte-1vnge70 .unusual {
  color: var(--yellow);
}

.description.svelte-1vnge70 .new-normal {
  color: var(--blue);
}

.shapes-container.svelte-xdr9ha.svelte-xdr9ha {
  margin: 0 10vw;
  padding-top: 10vh;
}

.cards-container.svelte-xdr9ha.svelte-xdr9ha {
  width: 100%;
  height: 100%;
  padding-bottom: 20vh;
  display: flex;
  justify-content: space-between;
}

.title.svelte-xdr9ha.svelte-xdr9ha {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shape-card.svelte-xdr9ha.svelte-xdr9ha {
  width: 20vw;
  max-width: 370px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.shape-card.svelte-xdr9ha .shape-heading.svelte-xdr9ha {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.shape-card.svelte-xdr9ha .shape-heading h1.svelte-xdr9ha {
  font-weight: 800;
  font-size: 28px;
  line-height: 125%;
  margin: 0 10px;
}

.shape-card.svelte-xdr9ha .shape-heading .shape-icon-container.svelte-xdr9ha {
  z-index: -1;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shape-card.svelte-xdr9ha .shape-heading .unusual-icon.svelte-xdr9ha {
  transform: translate(0, -3px);
}

.shape-card.svelte-xdr9ha .shape-heading img.svelte-xdr9ha {
  width: 30px;
}

.shape-card.svelte-xdr9ha .description.svelte-xdr9ha {
  font-size: 19px;
  min-height: 70px;
  font-weight: 500;
  line-height: 1.3em;
}

.shape-card.svelte-xdr9ha .description.svelte-xdr9ha span {
  font-weight: 500;
}

.shape-card.svelte-xdr9ha .description.svelte-xdr9ha .normal {
  color: var(--red);
}

.shape-card.svelte-xdr9ha .description.svelte-xdr9ha .unusual {
  color: var(--yellow);
}

.shape-card.svelte-xdr9ha .description.svelte-xdr9ha .new-normal {
  color: var(--blue);
}

.shape-card.svelte-xdr9ha .chart-container.svelte-xdr9ha {
  width: 100%;
  height: 280px;
  align-self: flex-end;
  margin: 0;
}

p.svelte-xdr9ha.svelte-xdr9ha {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.25;
}

@media screen and (max-width: 600px) {
  .cards-container.svelte-xdr9ha.svelte-xdr9ha {
    flex-wrap: wrap;
  }
  .shape-card.svelte-xdr9ha.svelte-xdr9ha {
    width: 100%;
    height: 70vh;
    justify-content: flex-start;
  }
}
.cover-container.svelte-1qq6evk.svelte-1qq6evk {
  position: relative;
  height: 100vh;
  margin: 0 10vw;
}

.chart-container.svelte-1qq6evk.svelte-1qq6evk {
  transform: translateY(5px);
  width: 100%;
  height: 100%;
  max-height: 85vh;
}

.text-container.svelte-1qq6evk.svelte-1qq6evk {
  position: absolute;
  top: 0;
  width: 100%;
  margin: calc(10vh + 48px) 0;
  display: flex;
  justify-content: space-between;
}

.title-container.svelte-1qq6evk.svelte-1qq6evk {
  width: 50%;
}

.title-container.svelte-1qq6evk h1.svelte-1qq6evk {
  margin: 0;
  font-size: 100px;
  line-height: 78%;
}

.title-container.svelte-1qq6evk h2.svelte-1qq6evk {
  margin: 20px 0;
  width: 80%;
  font-size: 24px;
  font-weight: 400;
}

.attrib-container.svelte-1qq6evk.svelte-1qq6evk {
  max-width: 300px;
  position: absolute;
  right: 0px;
}

a.svelte-1qq6evk.svelte-1qq6evk:hover {
  opacity: 75%;
}

.logo-container.svelte-1qq6evk.svelte-1qq6evk {
  width: 100%;
  min-width: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.logo-container.svelte-1qq6evk .logo.svelte-1qq6evk {
  margin-right: 20px;
  transform: scale(1);
}

.logo-container.svelte-1qq6evk .logo-schema.svelte-1qq6evk {
  position: relative;
  width: 80px;
  height: auto;
}

.logo-container.svelte-1qq6evk .logo-google.svelte-1qq6evk {
  position: relative;
  bottom: -5px;
  width: 125px;
  height: auto;
}

.logo-container.svelte-1qq6evk .logo-axios.svelte-1qq6evk {
  width: 60px;
  height: auto;
  margin-right: 0px;
}

@media screen and (max-width: 1024px) {
  .text-container.svelte-1qq6evk.svelte-1qq6evk {
    flex-direction: column;
    justify-content: flex-start;
  }
  .text-container.svelte-1qq6evk .title-container.svelte-1qq6evk {
    width: 90%;
    padding-top: 65px;
  }
  .text-container.svelte-1qq6evk .attrib-container.svelte-1qq6evk {
    margin: 0;
    left: 0px;
  }
  .text-container.svelte-1qq6evk .logo-container.svelte-1qq6evk {
    min-width: 200px;
  }
}
@media screen and (max-width: 600px) {
  .text-container.svelte-1qq6evk.svelte-1qq6evk {
    margin: calc(2vh + 48px) 0;
  }
  .text-container.svelte-1qq6evk .title-container.svelte-1qq6evk {
    width: 100%;
  }
  .text-container.svelte-1qq6evk .title-container h1.svelte-1qq6evk {
    font-size: 64px;
    width: 95%;
  }
  .text-container.svelte-1qq6evk .title-container h2.svelte-1qq6evk {
    font-size: 21px;
    width: 100%;
  }
  .text-container.svelte-1qq6evk .logo-container.svelte-1qq6evk {
    padding-bottom: 15px;
  }
  .text-container.svelte-1qq6evk .logo-container .logo.svelte-1qq6evk {
    margin-right: 5px;
    transform: scale(0.85);
  }
}
.logo-container.svelte-947nyo.svelte-947nyo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 0 0 128px;
}

.logo-container.svelte-947nyo .logo.svelte-947nyo {
  margin-right: 15px;
  transform: scale(0.9);
}

.logo-container.svelte-947nyo .logo-schema.svelte-947nyo {
  position: relative;
  width: 80px;
  height: auto;
}

.logo-container.svelte-947nyo .logo-google.svelte-947nyo {
  position: relative;
  bottom: -4px;
  width: 117px;
  height: auto;
}

.logo-container.svelte-947nyo .logo-axios.svelte-947nyo {
  width: 60px;
  height: auto;
}

.grid__controls.svelte-16oevvq.svelte-16oevvq {
  overflow-y: hidden;
  width: 100%;
  padding: 0 24px;
  pointer-events: none;
  opacity: 0;
  color: #000;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
}

.grid__controls.grid__controls--in-view.svelte-16oevvq.svelte-16oevvq {
  pointer-events: all;
  opacity: 1;
}

.grid__categories-and-sort.svelte-16oevvq.svelte-16oevvq {
  display: flex;
  justify-content: space-between;
}

.grid__control__label.svelte-16oevvq.svelte-16oevvq {
  font-weight: 500;
}

.grid__controls.svelte-16oevvq button.svelte-16oevvq {
  margin: 0;
  padding: 0;
  transition: opacity 0.5s;
  opacity: 1;
  border: 0;
  background: transparent;
  font-size: inherit;
}

.grid__sort__controls.svelte-16oevvq.svelte-16oevvq {
  position: fixed;
  top: 9px;
  left: 50%;
  overflow: hidden;
  height: 30px;
  transform: translate(-50%, 0);
  border-radius: 6px;
}

.grid__sort__controls.svelte-16oevvq button.svelte-16oevvq {
  width: auto;
  height: 100%;
  padding: 0 20px;
  cursor: pointer;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.grid__sort__controls.svelte-16oevvq button.selected.svelte-16oevvq {
  background: #f4f4f4;
}

.grid__sort__controls.svelte-16oevvq .noChange.svelte-16oevvq {
  color: var(--red);
}

.grid__sort__controls.svelte-16oevvq .spike.svelte-16oevvq {
  color: var(--yellow);
}

.grid__sort__controls.svelte-16oevvq .sustained.svelte-16oevvq {
  color: var(--blue);
}

.grid__category__controls.svelte-16oevvq.svelte-16oevvq {
  position: relative;
  text-align: right;
}

.grid__category__toggle.svelte-16oevvq.svelte-16oevvq {
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
}

.grid__category__toggle.svelte-16oevvq.svelte-16oevvq::before {
  position: absolute;
  left: -30px;
  width: 30px;
  height: 30px;
  content: "";
  background-image: url("./images/filter.svg");
  background-position: center;
  background-size: 36px;
}

.grid__categories.svelte-16oevvq.svelte-16oevvq {
  position: fixed;
  top: 48px;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 48px);
  border: 1px solid #f4f4f4;
  background: #fff;
}

.grid__categories.closed.svelte-16oevvq.svelte-16oevvq {
  display: none;
}

.grid__categories.svelte-16oevvq button.svelte-16oevvq {
  display: block;
  width: 100%;
  height: 48px;
  margin-left: 5px;
  padding: 0 20px 0 20px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid #f4f4f4;
  font-size: 16px;
  font-weight: 400;
}

.grid__categories.svelte-16oevvq button.selected.svelte-16oevvq {
  font-weight: 700;
}

.grid__categories.svelte-16oevvq .count.svelte-16oevvq {
  font-size: 0.8em;
}

button.grid__mobile-control-open.svelte-16oevvq.svelte-16oevvq {
  position: fixed;
  z-index: 999;
  top: 6px;
  left: 30px;
  display: none;
  width: 36px;
  height: 36px;
  background-image: url("./images/filter.svg");
  background-position: center;
  line-height: 36px;
}

button.grid__mobile-control-close.svelte-16oevvq.svelte-16oevvq {
  position: fixed;
  z-index: 999;
  top: 6px;
  right: 30px;
  display: none;
  width: 36px;
  height: 36px;
  background-image: url("./images/close.svg");
  background-position: center;
  background-size: 36px;
  line-height: 36px;
}

@media (hover: hover) {
  .grid__controls.svelte-16oevvq button.svelte-16oevvq:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 780px) {
  button.grid__mobile-control-open.svelte-16oevvq.svelte-16oevvq, button.grid__mobile-control-close.svelte-16oevvq.svelte-16oevvq {
    display: block;
  }
  .grid__categories-and-sort.svelte-16oevvq.svelte-16oevvq {
    position: fixed;
    z-index: 99999;
    top: 48px;
    right: 0;
    left: 0;
    overflow: hidden;
    flex-direction: column-reverse;
    justify-content: flex-end;
    width: 100vw;
    height: calc(100vh - 48px);
    transition: transform 0.5s;
    transform: translate(0, 0);
    background: #fff;
  }
  .grid__controls--hide-mobile.svelte-16oevvq .grid__categories-and-sort.svelte-16oevvq {
    transform: translate(0, calc(-100vh - 48px));
    pointer-events: none;
  }
  .grid__sort__controls.svelte-16oevvq.svelte-16oevvq {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 240px;
    transform: translate(0, 0);
    text-align: left;
    border: none;
    border-radius: 0;
  }
  .grid__sort__controls.svelte-16oevvq button.svelte-16oevvq {
    display: block;
    width: 100%;
    height: 48px;
    margin: 0;
    padding: 0 30px;
    border-radius: 0;
    font-size: 18px;
  }
  .grid__sort__controls.svelte-16oevvq > .svelte-16oevvq {
    display: block;
    width: 100%;
    height: 48px;
    margin: 0;
    padding: 0 30px;
    text-align: left;
    line-height: 48px;
  }
  .grid__sort__controls.svelte-16oevvq button.selected.svelte-16oevvq {
    color: #000;
    background: #dcdcdc;
  }
  .grid__sort__controls.svelte-16oevvq button.sustained.selected.svelte-16oevvq {
    color: #fff;
    background: var(--blue);
  }
  .grid__sort__controls.svelte-16oevvq button.spike.selected.svelte-16oevvq {
    color: #fff;
    background: var(--yellow);
  }
  .grid__sort__controls.svelte-16oevvq button.noChange.selected.svelte-16oevvq {
    color: #fff;
    background: var(--red);
  }
  .grid__category__controls.svelte-16oevvq.svelte-16oevvq {
    text-align: left;
  }
  button.grid__category__toggle.svelte-16oevvq.svelte-16oevvq {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 30px;
    text-align: left;
    border-top: 1px solid #000;
    border-bottom: 1px solid #dcdcdc;
    line-height: 48px;
  }
  .grid__categories.open.svelte-16oevvq.svelte-16oevvq, .grid__categories.closed.svelte-16oevvq.svelte-16oevvq {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    max-height: calc(100vh - 288px);
  }
  .grid__categories.svelte-16oevvq.svelte-16oevvq {
    border: 0;
  }
  .grid__categories.svelte-16oevvq button.svelte-16oevvq {
    display: block;
    height: 48px;
    margin: 0;
    padding: 0 30px;
    font-size: 18px;
    line-height: 48px;
  }
}
.trend.svelte-5yhqgl {
  position: absolute;
  overflow: hidden;
  width: 10vw;
  height: calc((100vh - 48px) / 10);
  cursor: pointer;
  transition: background 0.5s, transform 1s;
  border: 1px solid #f4f4f4;
  background: #fff;
}

.trend.svelte-5yhqgl:hover {
  background: #f4f4f4;
}

.trend__keyword.svelte-5yhqgl {
  position: absolute;
  padding: 5px 9px 9px 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  line-height: 12px;
}

@media screen and (max-width: 600px) {
  .trends.svelte-5yhqgl {
    display: flex;
    flex-wrap: wrap;
    padding: 48px 0 0 0;
    background: #fff;
  }
  .trend.svelte-5yhqgl {
    position: relative;
    width: 50%;
    height: 120px;
    background: #fff;
  }
}
canvas.svelte-1iufqhe {
  border: 1px solid #dcdcdc;
}

.axis-label.svelte-46bm78 {
  font-size: 12px;
}

.highlighted-keyword.svelte-46bm78 {
  font-size: 14px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
}

.annotation-container.svelte-quwjet {
  position: absolute;
  width: 210px;
}

.date.svelte-quwjet {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 300;
}

.text.svelte-quwjet {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.grid__chart.svelte-3amivl {
  width: 100%;
  max-width: 80vw;
  height: calc(100vh - 264px);
  margin: auto;
}

.chart.svelte-3amivl {
  position: absolute;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 600px) {
  .grid__chart.svelte-3amivl {
    max-width: none;
    height: calc(100vh - 384px);
  }
}
.layercake-container.svelte-vhzpsp, .layercake-container.svelte-vhzpsp * {
  box-sizing: border-box;
}

.layercake-container.svelte-vhzpsp {
  width: 100%;
  height: 100%;
}

div.svelte-1bu60uu, slot.svelte-1bu60uu {
  position: absolute;
  top: 0;
  left: 0;
}

svg.svelte-u84d8d {
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
}

svg.svelte-6sm8ei {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: visible;
}

svg.svelte-6sm8ei * {
  vector-effect: non-scaling-stroke;
}

.custom__chart.svelte-zxaocg {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sparkline.svelte-zxaocg {
  transition: stroke 0.5s;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.highlighted-keyword.svelte-iwvx6v {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .highlighted-keyword.svelte-iwvx6v {
    font-size: 14px;
    line-height: 18px;
  }
}
.custom__chart.svelte-1630e6z {
  width: 100%;
  height: 100%;
}

.custom__chart.svelte-1630e6z {
  width: 100%;
  height: 100%;
}