.results .map-results {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.results .map-results .select {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  font-weight: 300;
  gap: min(1rem, 3vw) min(2rem, 5vw);
  font-size: min(1.2rem, 4vw);
  font-family: monospace;
}
.results .map-results .select select {
  font-size: min(1.2rem, 4vw);
  max-width: 100%;
  font-family: monospace;
  padding: 0.3rem;
  border-radius: 0.2rem;
  font-weight: 300;
  background-color: var(--clr-blue-100);
}
.results .map-results .map {
  display: flex;
  justify-content: center;
  width: 100%;
}
.results .map-results .map .world {
  width: 50vw;
  display: flex;
  align-items: center;
  padding: min(1rem, 3vw);
}
@media (max-width: 600px) {
  .results .map-results .map .world {
    width: 95vw;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 600px) {
  .results .map-results .map .world {
    width: 80vw;
  }
}
.results .map-results .map .world > svg {
  z-index: 20;
  overflow: visible;
  background-color: var(--clr-blue-700);
  padding: 1rem;
  border-radius: 0.2rem;
  border: 1px solid var(--clr-blue-500);
  box-shadow: 0 0 10px 1px var(--clr-blue-600);
  height: 100%;
  flex-grow: 1;
}
.results .map-results .map .world > svg *:focus {
  outline: none;
}
.results .map-results .map .world > svg g#points {
  display: none;
}
.results .map-results .map .world > svg g#world-map {
  opacity: 0.5;
}
.results .map-results .map .world > svg g#world-map path {
  stroke-width: 0.04;
  stroke: var(--clr-blue-200);
  fill: var(--clr-blue-500);
}
.results .map-results .map .world > svg marker.arrow path {
  fill: var(--clr-blue-600);
}
.results .map-results .map .world > svg #circular-gradient stop:first-child {
  stop-color: var(--clr-blue-300);
  stop-opacity: 1;
}
.results .map-results .map .world > svg #circular-gradient stop:nth-child(2) {
  stop-color: var(--clr-blue-300);
  stop-opacity: 1;
}
.results .map-results .map .world > svg #circular-gradient stop:nth-child(3) {
  stop-color: var(--clr-blue-300);
  stop-opacity: 0;
}
.results .map-results .map .world > svg g.pattern-layer.hidden {
  display: none;
}
.results .map-results .map .world > svg g.pattern-layer.hidden * {
  display: none;
}
.results .map-results .map .world > svg g.pattern-layer g.links {
  z-index: 10;
}
.results .map-results .map .world > svg g.pattern-layer g.links path.link {
  stroke-width: 0.4;
  stroke: var(--clr-blue-400);
}
.results .map-results .map .world > svg g.pattern-layer g.region-toggles-group g.region-toggle circle.region-toggle-circ {
  fill: var(--clr-blue-100);
  stroke-width: 0.2;
}
@keyframes region-toggle-pulse {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.5;
  }
}
.results .map-results .map .world > svg g.pattern-layer g.region-toggles-group g.region-toggle circle.region-toggle-shadow {
  animation: region-toggle-pulse 1000ms ease-out infinite alternate;
  animation-delay: var(--animation-delay, 0);
  fill: url(#circular-gradient);
  stroke: none;
}
@keyframes region-toggle-glow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.01;
  }
}
.results .map-results .map .world > svg g.pattern-layer g.region-toggles-group g.region-toggle.hidden * {
  opacity: 0 !important;
  animation: none !important;
}
.results .map-results .map .world > svg g.pattern-layer g.region-info:not(.visible) .menus-rect {
  display: none;
}
.results .map-results .map .world > svg g.pattern-layer g.region-info:not(.visible):not(.not-new) g.symbols-menu *, .results .map-results .map .world > svg g.pattern-layer g.region-info:not(.visible):not(.not-new) g.region-title * {
  pointer-events: none;
  opacity: 0 !important;
}
.results .map-results .map .world > svg g.pattern-layer g.region-info:not(.visible).not-new g.symbols-menu *, .results .map-results .map .world > svg g.pattern-layer g.region-info:not(.visible).not-new g.region-title * {
  animation-delay: 400ms;
}
.results .map-results .map .world > svg g.pattern-layer g.region-info:not(.visible).not-new g.symbols-menu *:is(rect), .results .map-results .map .world > svg g.pattern-layer g.region-info:not(.visible).not-new g.region-title *:is(rect) {
  animation: menu-leave-rect 400ms ease forwards;
}
@keyframes menu-leave-rect {
  0% {
    opacity: 0.7;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.results .map-results .map .world > svg g.pattern-layer g.region-info:not(.visible).not-new g.symbols-menu *:not(:is(rect)), .results .map-results .map .world > svg g.pattern-layer g.region-info:not(.visible).not-new g.region-title *:not(:is(rect)) {
  animation: menu-leave-not-rect 400ms ease forwards;
}
@keyframes menu-leave-not-rect {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.results .map-results .map .world > svg g.pattern-layer g.region-info.visible g.symbols-menu *, .results .map-results .map .world > svg g.pattern-layer g.region-info.visible g.region-title * {
  opacity: 0;
  animation-delay: 100ms;
}
.results .map-results .map .world > svg g.pattern-layer g.region-info.visible g.symbols-menu *:is(rect), .results .map-results .map .world > svg g.pattern-layer g.region-info.visible g.region-title *:is(rect) {
  animation: menu-enter-rect 400ms ease forwards;
}
@keyframes menu-enter-rect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.7;
  }
}
.results .map-results .map .world > svg g.pattern-layer g.region-info.visible g.symbols-menu *:not(:is(rect)), .results .map-results .map .world > svg g.pattern-layer g.region-info.visible g.region-title *:not(:is(rect)) {
  animation: menu-enter-not-rect 400ms ease forwards;
}
@keyframes menu-enter-not-rect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.results .map-results .map .world > svg g.pattern-layer g.region-info g.symbols-menu rect, .results .map-results .map .world > svg g.pattern-layer g.region-info g.region-title rect {
  fill: var(--clr-blue-700);
  stroke: black;
  stroke-width: 0.2;
}
.results .map-results .map .world > svg g.pattern-layer g.region-info g.symbols-menu text, .results .map-results .map .world > svg g.pattern-layer g.region-info g.region-title text {
  font-weigth: 400;
  dominant-baseline: hanging;
}
.results .map-results .map .world > svg g.pattern-layer g.region-info g.symbols-menu.region-title text, .results .map-results .map .world > svg g.pattern-layer g.region-info g.region-title.region-title text {
  font-weigth: 800;
}
.results .map-results .map .world > svg g.pattern-layer g.region-info g.symbols-menu.region-title text tspan, .results .map-results .map .world > svg g.pattern-layer g.region-info g.region-title.region-title text tspan {
  fill: var(--clr-blue-100);
}
.results .map-results .map .world > svg g.pattern-layer g.region-info g.symbols-menu.symbols-menu tspan, .results .map-results .map .world > svg g.pattern-layer g.region-info g.region-title.symbols-menu tspan {
  fill: var(--clr-blue-200);
  cursor: pointer;
  user-select: none;
}
.results .map-results .map .world > svg g.pattern-layer g.region-info g.symbols-menu.symbols-menu tspan:hover, .results .map-results .map .world > svg g.pattern-layer g.region-info g.symbols-menu.symbols-menu tspan:focus, .results .map-results .map .world > svg g.pattern-layer g.region-info g.region-title.symbols-menu tspan:hover, .results .map-results .map .world > svg g.pattern-layer g.region-info g.region-title.symbols-menu tspan:focus {
  fill: var(--clr-blue-100);
}
.results .map-results .map .world > svg g.pattern-layer g.region-info g.symbols-menu.symbols-menu tspan:active, .results .map-results .map .world > svg g.pattern-layer g.region-info g.region-title.symbols-menu tspan:active {
  fill: var(--clr-blue-400);
}
.results .map-results .timelines .charts.hidden {
  display: none;
}
.results .simple-results {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.results .simple-results .search {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  font-weight: 300;
  gap: min(1rem, 3vw) min(2rem, 5vw);
  font-size: min(1.2rem, 4vw);
  font-family: monospace;
  position: relative;
}
.results .simple-results .search input {
  font-size: min(1.2rem, 4vw);
  max-width: 100%;
  font-family: monospace;
  padding: 0.3rem;
  border-radius: 0.2rem;
  font-weight: 300;
  background-color: var(--clr-blue-100);
}
.results .simple-results .search .options {
  position: absolute;
  top: calc(100% + 1rem);
  max-height: 30vh;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  padding: min(1rem, 2vw) min(2rem, 3vw);
  border-radius: 0.2rem;
  border: 1px solid var(--clr-blue-300);
  z-index: 10;
  background-color: rgba(var(--triplet-blue-700), 0.9);
}
@media (max-width: 600px) {
  .results .simple-results .search .options {
    max-width: 90vw;
  }
}
.results .simple-results .search .options.hidden {
  display: none;
}
.results .simple-results .search .options > div {
  cursor: pointer;
  display: flex;
  gap: min(3rem, 3vw);
  justify-content: space-between;
}
.results .simple-results .search .options > div > p {
  font-size: min(1.3rem, 2.5vw);
}
.results .simple-results .search .options > div > p:nth-child(2) {
  flex-grow: 1;
  text-align: right;
}
.results .simple-results .search .options > div > p:nth-child(3) {
  min-width: 10ch;
}
.results .simple-results .search .options > div.hidden {
  display: none;
}
.results .simple-results .search .options > div:first-child {
  opacity: 0.9;
  margin-bottom: 1rem;
}
.results .simple-results .search .options > div:not(.no-options):not(:first-child) > p:nth-child(3) {
  opacity: 0.8;
}
.results .simple-results .search .options > div:not(.no-options):not(:first-child):hover, .results .simple-results .search .options > div:not(.no-options):not(:first-child):focus {
  color: var(--clr-blue-300);
}
.results .simple-results .search .options > div:not(.no-options):not(:first-child):active {
  color: rgb(var(--triplet-blue-300), 0.8);
}
.results .simple-results .search .options > div.no-options {
  color: var(--clr-blue-200);
}
.results .map-results .range, .results .simple-results .range {
  font-size: min(1.2rem, 4vw);
  font-family: monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: min(1rem, 3vw);
}
.results .map-results .range select.range-select, .results .simple-results .range select.range-select {
  background-color: var(--clr-blue-100);
  padding: 0.3rem;
  font-family: monospace;
  font-size: min(1.2rem, 3vw);
  border-radius: 0.2rem;
}
.results .map-results .range .prev-pattern, .results .map-results .range .next-pattern, .results .simple-results .range .prev-pattern, .results .simple-results .range .next-pattern {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  --fill-color: var(--clr-blue-400);
}
.results .map-results .range .prev-pattern:hover, .results .map-results .range .next-pattern:hover, .results .simple-results .range .prev-pattern:hover, .results .simple-results .range .next-pattern:hover {
  --fill-color: var(--clr-blue-300);
}
.results .map-results .range .prev-pattern:active, .results .map-results .range .prev-pattern:focus, .results .map-results .range .next-pattern:active, .results .map-results .range .next-pattern:focus, .results .simple-results .range .prev-pattern:active, .results .simple-results .range .prev-pattern:focus, .results .simple-results .range .next-pattern:active, .results .simple-results .range .next-pattern:focus {
  --fill-color: var(--clr-blue-200);
}
.results .map-results .range .prev-pattern.inactive, .results .map-results .range .next-pattern.inactive, .results .simple-results .range .prev-pattern.inactive, .results .simple-results .range .next-pattern.inactive {
  --fill-color: transparent;
}
.results .map-results .range .prev-pattern svg, .results .map-results .range .next-pattern svg, .results .simple-results .range .prev-pattern svg, .results .simple-results .range .next-pattern svg {
  height: min(2rem, 5vw);
}
.results .map-results .range .prev-pattern svg path, .results .map-results .range .next-pattern svg path, .results .simple-results .range .prev-pattern svg path, .results .simple-results .range .next-pattern svg path {
  fill: var(--fill-color);
}
.results .map-results .plots, .results .simple-results .plots {
  width: 100%;
}
.results .map-results .plots .pattern-plots.charts, .results .simple-results .plots .pattern-plots.charts {
  padding: 0;
}
.results .map-results .plots .pattern-plots.charts.hidden, .results .simple-results .plots .pattern-plots.charts.hidden {
  display: none;
}
.results .map-results .market-heartbeats .market-heartbeat .charts .chart-container, .results .simple-results .market-heartbeats .market-heartbeat .charts .chart-container {
  flex-direction: column;
}
.results .map-results .market-heartbeats .market-heartbeat .charts .chart .loader, .results .simple-results .market-heartbeats .market-heartbeat .charts .chart .loader {
  display: flex;
}
.results .map-results .market-heartbeats .market-heartbeat .charts .chart .loader::after, .results .simple-results .market-heartbeats .market-heartbeat .charts .chart .loader::after {
  top: 55%;
  height: 45%;
}
.results .map-results .market-heartbeats .market-heartbeat .charts .chart .loader p, .results .simple-results .market-heartbeats .market-heartbeat .charts .chart .loader p {
  font-size: min(2rem, 3vw);
  margin-inline: auto;
  margin-top: min(2rem, 3vw);
  font-family: monospace;
}

main {
  display: flex;
  flex-direction: column;
}
main > p:first-child {
  margin-top: min(3rem, 6vw);
  font-weight: 300;
  font-size: 2rem;
  text-align: center;
}
main > p.not-subscribed {
  font-size: min(1.4rem, 4vw);
  line-height: min(2.8rem, 8vw);
  font-weight: 300;
  margin-top: min(4rem, 4vw);
  text-align: center;
  max-width: 60vw;
  margin-inline: auto;
}
@media (max-width: 600px) {
  main > p.not-subscribed {
    max-width: 90vw;
  }
}
main > p.not-subscribed > span.mono {
  font-family: monospace;
  white-space: nowrap;
}
main > p.not-subscribed a {
  font-weight: 300;
  text-align: center;
  color: var(--clr-blue-300);
}
main > .select-pattern, main > .explore-symbols {
  margin-top: min(2rem, 6vw);
  margin-inline: auto;
  font-weight: 300;
}
@media (max-width: 600px) {
  main > .select-pattern, main > .explore-symbols {
    margin-inline: 1rem;
  }
}
main > .select-pattern > p, main > .explore-symbols > p {
  font-size: min(1.5rem, 4vw);
  text-align: center;
}
main > .select-pattern > div, main > .explore-symbols > div {
  margin-top: min(1.5rem, 4vw);
  display: flex;
  gap: min(1rem, 4vw) min(2rem, 5vw);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 60vw;
}
@media only screen and (max-width: 1200px) and (min-width: 600px) {
  main > .select-pattern > div, main > .explore-symbols > div {
    width: 80vw;
  }
}
@media (max-width: 600px) {
  main > .select-pattern > div, main > .explore-symbols > div {
    width: 90vw;
  }
}
main > .select-pattern > div > a, main > .explore-symbols > div > a {
  border: 1px solid var(--clr-blue-700);
  text-align: center;
  border-radius: 0.2rem;
  padding: min(1rem, 3vw);
  font-size: min(1.2rem, 4vw);
  color: var(--clr-blue-100);
  text-decoration: none;
  transition: color 300ms ease;
  position: relative;
}
main > .select-pattern > div > a.selected, main > .explore-symbols > div > a.selected {
  color: var(--clr-blue-300);
}
main > .select-pattern > div > a:hover, main > .select-pattern > div > a:focus, main > .select-pattern > div > a:active, main > .explore-symbols > div > a:hover, main > .explore-symbols > div > a:focus, main > .explore-symbols > div > a:active {
  color: var(--clr-blue-300);
  background-color: none;
}
main > .select-pattern > div > a:hover::after, main > .select-pattern > div > a:focus::after, main > .select-pattern > div > a:active::after, main > .explore-symbols > div > a:hover::after, main > .explore-symbols > div > a:focus::after, main > .explore-symbols > div > a:active::after {
  width: 100%;
  left: 0;
}
main > .select-pattern > div > a::after, main > .explore-symbols > div > a::after {
  content: "";
  position: absolute;
  height: 0.05rem;
  bottom: -0.4rem;
  background-color: var(--clr-blue-300);
  border-radius: 0.5rem;
  transition: width 300ms ease, left 300ms ease;
  width: 0;
  left: 50%;
}
main > .results {
  margin-top: min(3rem, 8vw);
}
main > .results > p:first-child {
  font-size: min(1.5rem, 4vw);
  font-weight: 300;
  text-align: center;
  border-bottom: 1px solid var(--clr-blue-300);
  width: 50%;
  white-space: nowrap;
  margin-inline: auto;
  padding-bottom: 0.5rem;
}
@media only screen and (max-width: 1200px) and (min-width: 600px) {
  main > .results > p:first-child {
    width: 80vw;
  }
}
@media (max-width: 600px) {
  main > .results > p:first-child {
    width: 90vw;
  }
}
main > .results > .simple-results {
  margin-top: 1rem;
}
main > .results > .map-results {
  margin-top: 1rem;
}
main > .results > .map-results > .select {
  max-width: 90vw;
}
main > .results > .map-results > .select .custom-link-reason {
  font-size: min(0.8rem, 2.8vw);
}
main > .results > .map-results > .select .custom-link-reason.hidden {
  display: none;
}

/*# sourceMappingURL=home-patterns.css.map */
