.App-module__root--DHaBq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-page);
  width: 100%;
  min-height: calc(100vh - 4rem);
  justify-content: center;
}

.App-module__claim--zvX1Z {
  width: 90%;
  max-width: 850px;
  text-align: center;
  font-size: 1.6rem;
}

.App-module__footer--d2944 {
  line-height: 1.5;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-size: var(--fs-xs);
  opacity: 0.5;
  color: var(--c-p);
  text-align: center;
}

.App-module__footer--d2944 p {
    font-weight: 400;
  }

.App-module__footer--d2944 a {
    color: var(--c-p);
    font-weight: 400;
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

.Button-module__root--RPJcV {
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--c-card-b);
  background-color: var(--c-card-bkg);
  line-height: 1;
  padding: 0.8em 1.6em;
  border-radius: 10px;
  position: relative;
  color: var(--c-p);
}

  .Button-module__root--RPJcV:hover {
    transform: scale(1.05);
    background-color: #fafafa;
  }

.Button-module__loader--DQhzk {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 1em;
  height: 1em;
  color: currentColor;
  opacity: 0;
  will-change: opacity;
  transition: opacity 200ms ease-in-out;
  pointer-events: none;
  z-index: 50;
}

.Button-module__isLoading--HReoL .Button-module__loader--DQhzk {
    opacity: 1;
  }

.Button-module__isLoading--HReoL .Button-module__content--Ki_fK {
    opacity: 0;
  }

.Button-module__isDisabled--lwUDi {
  pointer-events: none;
  opacity: 0.8;
}

.Button-module__isDisabled--lwUDi::before {
    opacity: 0;
  }

.Button-module__content--Ki_fK {
  position: relative;
  z-index: 70;
  display: block;
  line-height: 1;
}

.Button-module__colorRed--NVZMe {
  color: #de1c1c;
}

.Loader-module__root--lVHhY {
  --loader-size: 1em;
  fill: transparent;
  stroke: currentColor;
  stroke-width: calc(1em * 0.05);
  stroke-width: calc(var(--loader-size) * 0.05);
  animation: Loader-module__loader-dash--kgaKj 1500ms ease infinite,
    Loader-module__loader-rotate--GgQwP 1500ms linear infinite;
  width: 1em;
  width: var(--loader-size);
  height: 1em;
  height: var(--loader-size);
  margin-top: calc(1em * -0.5);
  margin-top: calc(var(--loader-size) * -0.5);
  margin-left: calc(1em * -0.5);
  margin-left: calc(var(--loader-size) * -0.5);
}

  .Loader-module__root--lVHhY.Loader-module__isLarge--hTrb4 {
    --loader-size: 2em;
  }

@keyframes Loader-module__loader-dash--kgaKj {
  0% {
    stroke-dasharray: 1, 95;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 85, 95;
    stroke-dashoffset: -25;
  }
  100% {
    stroke-dasharray: 85, 95;
    stroke-dashoffset: -93;
  }
}

@keyframes Loader-module__loader-rotate--GgQwP {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.Icon-module__icon--Zw6x9 {
  display: inline-block;
  line-height: 1;
}

  .Icon-module__icon--Zw6x9 svg {
    text-align: center;
    vertical-align: middle;
    fill: currentColor;
    height: 1em;
    width: 1em;
  }

.Connect-module__root--k3POK {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-small);
  align-items: center;
}

.Connect-module__desc--oSUNe {
  font-size: var(--fs-xs);
  opacity: 0.75;
  max-width: 90%;
  width: 250px;
  text-align: center;
  font-weight: 300;
}

.Controller-module__root--K7eLN {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing);
}

.Controller-module__desc--P38mv {
}

.Controller-module__table--seTIn {
  margin-top: 0.5rem;
}

.Controller-module__table--seTIn td {
    padding: 0 0.5em;
    color: var(--c-p-light);
  }

.Controller-module__table--seTIn td:first-child {
      padding-left: 0;
    }

.Controller-module__active--a1YTa {
  font-size: 3rem;
  font-weight: 700;
}

.Controller-module__listenButton--eGJgm {
  font-size: 2rem;
  border-radius: 200px;
  width: 2em;
  height: 2em;
  padding: 0;
  overflow: hidden;
}

.Controller-module__listenButtonActive--G_okj:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    margin: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    animation: Controller-module__recording_before--cjf45 1250ms infinite ease-in-out;
  }

@keyframes Controller-module__recording_before--cjf45 {
  80% {
    width: 3em;
    height: 3em;
    margin: -1.5em;
    opacity: 0;
  }

  to {
    opacity: 0;
  }
}

:root {
  --spacing: 2rem;
  --spacing-small: 1rem;
  --spacing-section: 2.5rem;
  --spacing-page: 10vh;
  --transition-speed: 200ms;
  --c-p: #1d1d1b;
  --c-p-light: #939393;
  --c-border: #d0d0d0;
  --c-bkg: #f8f8f8;
  --c-bkg-inverse: #252525;
  --c-card-b: #e6e6e6;
  --c-card-bkg: #fff;
  --c-social: #fff;
  --c-primary: #009d89;
  --fs: 1rem;
  --fs-s: 0.8rem;
  --fs-xs: 0.65rem;
  --fs-l: 1.4rem;
  --fs-nav: 1.6rem;
  --fs-xl: 2rem;
}

body,
html {
  margin: 0;
  font-size: 130%;
  background-color: #f8f8f8;
  background-color: var(--c-bkg);
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: stretch;
  margin: 0;
}

body > * {
  width: 100%;
  min-height: 100vh;
}

p {
  margin: 0;
}

p,
a,
button,
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 1em;
}

a {
  font-weight: bold;
  color: #009d89;
  color: var(--c-primary);
  -webkit-text-decoration: none;
  text-decoration: none;
}

a:hover {
    color: #000;
  }

a,
button {
  transition: 200ms ease-in-out all;
}

