:root {
  --fontSizeSmall: 13px;
  --fontSizeDefault: 15px;
  --fontSizeLarge: 17px;
  --text1: rgba(39, 33, 28, 1);
  --text2: rgba(39, 33, 28, 0.8);
  --text3: rgba(39, 33, 28, 0.6);
  --primary: #1E1E1E;
  --bg1: #F4F1EE;
  --overlay1: rgba(39, 33, 28, 0.08);
  --overlay2: rgba(39, 33, 28, 0.12);
  --red1: #e44848;
  --yellow1: #EAC16B;
  --border1: 0.5px solid rgba(0,0,0,0.15);
  --border2: 0.5px solid rgba(0,0,0,0.2);
  --radiusDefault: 10px;
  --radiusLarge: 24px;
  --shadow1: 0 1px 3px 0 rgba(0,0,0,0.02);
  --shadow2: 0 2px 5px 0 rgba(0,0,0,0.02);
  --transition1: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition2: 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  --gapS: 8px;
  --gapM: 16px;
  --gapL: 24px;
  --gapXL: 32px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}

svg, img {
  display: block;
}

body {
  font-family: "Instrument Sans", system-ui, helvetica, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text1);
  background: var(--bg1);
  font-size: var(--fontSizeDefault);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100dvh;
}

a {
  color: inherit;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

a:active {
  opacity: 0.6;
}

hr {
  border: 0;
  border-top: var(--border1);
}

hr.dark {
  border-top: var(--border2);
}

@media only screen and (max-width: 800px) {
  .desktopOnly {
    display: none;
  }
}
@media only screen and (min-width: 801px) {
  .mobileOnly {
    display: none;
  }
}
.gapL {
  height: var(--gapL);
}

.gapM {
  height: var(--gapM);
}

.gapS {
  height: var(--gapS);
}

.gapXS {
  height: var(--gapXS);
}

.container {
  padding: 18px;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}

.container.small {
  max-width: 380px;
}

.container.wide {
  max-width: none;
}

.container.fullscreen {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card {
  border-radius: var(--radiusDefault);
  background: white;
  box-shadow: var(--shadow2);
  border-bottom: var(--border1);
}

.cardPadd {
  padding: 16px;
}
@media (min-width: 800px) {
  .cardPadd {
    padding: var(--gapL);
  }
}

.cardRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  padding-left: 0;
  margin-left: 16px;
  font-weight: normal;
  border-bottom: var(--border1);
}
.cardRowa:active {
  opacity: 1;
  color: var(--text3);
}

.cardRow span.right {
  margin-left: auto;
}

.card .cardRow:last-child {
  border-bottom: none;
}

a.cardRow:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../img/nucleo/18px_chevron-right.svg);
}

.cardRow span {
  color: var(--text3);
}

.authPage {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
}

.authContent {
  margin: auto;
  text-align: center;
  padding-bottom: 100px;
}

.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gapL);
}
.cols.skewLeft {
  grid-template-columns: 1fr 2fr;
}

@media (max-width: 800px) {
  .cols, .cols.skewLeft {
    grid-template-columns: 1fr;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

@media only screen and (min-width: 800px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 30px;
  }
}
strong {
  font-weight: 500;
}

.subtitle {
  font-size: var(--fontSizeLarge);
}

.tcLight, .subtitle {
  color: var(--text2);
}

.tcUltraLight {
  color: var(--text3);
}

.tcRed {
  color: var(--red1);
}

.tcUltralight {
  color: var(--text3);
}

.tsSmall {
  font-size: var(--fontSizeSmall);
}

.error {
  color: var(--red1);
  font-size: var(--fontSizeSmall);
  font-weight: 500;
}

.field {
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radiusDefault);
  font-family: inherit;
  font-size: var(--fontSizeDefault);
  line-height: 1.3;
  padding: 12px 14px;
  display: block;
  width: 100%;
  max-width: 100%;
  resize: none;
  -webkit-appearance: none;
  outline: none;
}

.field:focus {
  border-color: var(--primary);
}

.code-parent {
  display: flex;
  gap: 5px;
}

.code-parent .field {
  text-align: center;
}

.field[readonly] {
  background: var(--overlay1);
  color: var(--text3);
}

.phoneFieldWrap > div {
  width: 100%;
}

.btnGrp {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btnGrp.center {
  justify-content: center;
}

.btnGrp.right {
  justify-content: flex-end;
}

.btnGrp.split {
  justify-content: space-between;
}

.featLink {
  font-size: var(--fontSizeSmall);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.featLink:active {
  opacity: 0.6;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--text1);
  color: white;
  font-family: inherit;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  padding: 0 14px;
  height: 38px;
  border-radius: 100px;
  line-height: 1;
  -webkit-appearance: none;
  border: 0;
  outline: none;
  text-decoration: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn.square {
  border-radius: var(--radiusDefault);
}

.btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.btn.iconOnly {
  aspect-ratio: 1/1;
  padding-left: 0;
  padding-right: 0;
}

.btn.wide {
  width: 100%;
}

.btn.small {
  height: 32px;
  padding: 0 12px;
  font-size: var(--fontSizeSmall);
}

.btn.big {
  height: 46px;
  padding: 0 24px;
  font-size: var(--fontSizeDefault);
}

.btn.secondary {
  background: var(--overlay1);
  color: var(--text1);
}

.btn:active {
  background: var(--text2);
  opacity: 1;
}
.btn:active.secondary {
  background: var(--overlay2);
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}

.header, .headerSpacer {
  height: 82px;
}

.headerWrap {
  border-bottom: var(--border1);
  border-color: transparent;
  transition: var(--transition1);
}

.header.scrolled .headerWrap {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: var(--border1);
  box-shadow: var(--shadow1);
  background: rgba(var(--bg1), 0.7);
}

.container.headerInner {
  max-width: none;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  height: 76px;
  transition: var(--transition1);
  position: relative;
}
.container.headerInner .logo {
  position: absolute;
  left: 50%;
  margin-left: -32px;
}
.container.headerInner .logo svg {
  width: 64px;
  height: auto;
}

.footerContainer {
  font-size: 15px;
  color: var(--text3);
}

.footerContainer strong,
.footerContainer svg {
  color: var(--text1);
}

.footerContainer a {
  color: var(--text3);
  text-decoration: none;
}

.footerContainer a:active {
  color: var(--text1);
  text-decoration: none;
}

.footerCols {
  display: flex;
  flex-direction: column;
  gap: var(--gapL);
}

@media only screen and (min-width: 800px) {
  .footerCols {
    flex-direction: row;
    justify-content: space-between;
  }
}
.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 101;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: var(--transition2);
  opacity: 0;
  pointer-events: none;
}

.popupInner {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  background: #FFFFFF;
  border-top-left-radius: var(--radiusLarge);
  border-top-right-radius: var(--radiusLarge);
  transition: var(--transition2);
  transform: translateY(100%);
}

.popup.active {
  opacity: 1;
  pointer-events: all;
}
.popup.active .popupInner {
  transform: translateY(0);
}

.homeContentOuter {
  width: 100%;
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

@keyframes glowSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
.homeContentGlow {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -50%;
  margin-top: -40%;
  width: 200%;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/glowball.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  animation: glowSpin 7.5s linear infinite;
}
.homeContentGlow.alt {
  background-image: url(../img/glowball-alt.png);
}

.homeContentRing {
  position: relative;
  z-index: 2;
  width: 120%;
  margin-left: -10%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--bg1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.homeContent {
  max-width: 300px;
  text-align: center;
  margin: 0 auto;
}
.homeContent h1 {
  font-size: 30px;
}

.spinner {
  font-weight: 500;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinner:after {
  content: "";
  width: 70px;
  height: 70px;
  background-image: url(../img/spinner.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  animation: spin 1s linear infinite;
}

.accountFooterLinks {
  font-size: var(--fontSizeSmall);
  font-weight: 500;
}
.accountFooterLinks a {
  font-weight: 500;
}

.accountPic {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background-image: url(../img/account-pic.png);
  background-color: rgba(0, 0, 0, 0.05);
  background-size: cover;
  background-position: center;
}

.onboardContent {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 64px;
}

.onboardFrame {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: 1s ease;
}

.onboardContent.split .onboardFrame {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.onboardContent.split [data-hide-from-split=true] {
  display: none;
}
.onboardContent.split .continueBtn {
  display: none;
}

.onboardFrame.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.moods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

.mood {
  cursor: pointer;
  transition: var(--transition1);
}

.mood input {
  display: none;
}

.moods:hover .mood {
  opacity: 0.6;
}
.moods:hover .mood:hover {
  opacity: 1;
}

.popupField {
  display: none;
}

.popupFieldInner {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 110;
}

.popupFieldContent {
  width: 100%;
  max-width: 400px;
  padding: 16px;
  position: relative;
  z-index: 2;
  transform: translateY(30px);
  opacity: 0;
  transition: 0.7s ease;
}

.popupField.active .popupFieldContent {
  transform: translateY(0);
  opacity: 1;
}

.popupFieldContent .field {
  background: var(--bg1);
  height: 140px;
}

.popupFieldOverlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(var(--bg1), 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.playerContainer {
  position: relative;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.playerContainerControls {
  flex-shrink: 0;
  width: 100%;
}

.playerGlowballWrap {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.playerGlowball {
  flex: none;
  aspect-ratio: 1/1;
  max-width: 80%;
  margin-top: 30px;
  margin-bottom: -30px;
  background-image: url(../img/glowball.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transform-origin: center;
  pointer-events: none;
}

@keyframes playerGlowballRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg) scale(0.7);
  }
  100% {
    transform: rotate(360deg);
  }
}
.playerGlowball.playing {
  animation: playerGlowballRotate 10s linear infinite;
}

.playerGlowball.paused {
  animation-play-state: paused;
}

.audio-player {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 150px;
}

.custom-player {
  margin: 0 auto;
  padding: 20px;
  flex-grow: 1;
  width: 100%;
}

.play-pause-btn {
  width: 64px;
  height: 64px;
  background-color: #FFFFFF;
  background-image: url(../img/play-dark.svg);
  background-size: 32px auto;
  background-repeat: no-repeat;
  background-position: center;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  box-shadow: 0px 64px 80px rgba(0, 0, 0, 0.04), 0px 26.7377px 33.4221px rgba(0, 0, 0, 0.0287542), 0px 14.2952px 17.869px rgba(0, 0, 0, 0.0238443), 0px 8.01379px 10.0172px rgba(0, 0, 0, 0.02), 0px 4.25607px 5.32008px rgba(0, 0, 0, 0.0161557), 0px 1.77104px 2.21381px rgba(0, 0, 0, 0.0112458), 0 0 0 1px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  cursor: pointer;
}
.play-pause-btn:active {
  background-color: #fafafa;
}

.playing .play-pause-btn {
  background-image: url(../img/pause-dark.svg);
}

.time-display {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}

.time-slider-container {
  width: 100%;
}

.time-slider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  outline: none;
}
.time-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text1);
  cursor: pointer;
  border: none;
  margin-top: -4px;
}
.time-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text1);
  cursor: pointer;
  border: none;
}
.time-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
}
.time-slider::-moz-range-track {
  height: 4px;
  border-radius: 2px;
}

.time-numbers {
  display: flex;
  justify-content: space-between;
  color: var(--text1);
}

.current-time, .total-time {
  min-width: 45px;
  font-size: var(--fontSizeSmall);
}

.episodeDescription-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 8px;
  font-size: var(--fontSizeSmall);
}
.episodeDescription-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--bg1) 0%, transparent 10%, transparent 90%, var(--bg1) 100%);
  pointer-events: none;
}

.episodeDescription {
  display: inline-block;
  padding-right: 20px;
}
.episodeDescription.clone {
  display: inline-block;
  padding-right: 20px;
}

.needs-scroll .episodeDescription {
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Pause animation on hover */
.episodeDescription-container:hover .episodeDescription {
  animation-play-state: paused;
}

.feedbackStars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

.feedbackStar {
  cursor: pointer;
  transition: var(--transition1);
  color: rgba(0, 0, 0, 0.15);
}

.feedbackStar:hover, .feedbackStar.active, .feedbackStar.hover {
  color: var(--yellow1);
}

.feedbackStar input {
  display: none;
}

.tabs-nav {
  display: flex;
  align-items: center;
}

.tabs-nav a {
  width: 50%;
  font-weight: 500;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  text-align: center;
}

.tabs-nav a:active {
  opacity: 1;
}

.tabs-nav a.active {
  border-color: var(--text1);
}

.tab-content {
  display: none;
}

.miniEpisodeSnippet {
  min-width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: left;
  border: var(--border1);
  border-radius: var(--radiusDefault);
  padding: 16px;
  gap: 18px;
  font-weight: normal;
}

.miniEpisodeSnippet:active {
  background: var(--overlay1);
  opacity: 1;
}

.codeField {
  font-size: 11px;
  font-family: monospace;
  white-space: pre;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  min-height: 400px;
}

.adminContainer {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.adminContainer .header {
  flex-shrink: 0;
}

.adminCols {
  border-top: var(--border1);
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.adminColLeft {
  width: 500px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: var(--gapL);
  border-right: var(--border1);
}

.adminColRight {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.adminReflectionFrame {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
}/*# sourceMappingURL=styles.css.map */