:root {
  --white: whitesmoke;
  --purple: #432a64;
  --brand: #b896df;
  --black: #160920;
  --brand-secondary: #6f4c8b;
  --brand-dark: #6f4c8b;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.body {
  background-color: var(--white);
  color: #160920;
  font-family: Gabarito, sans-serif;
}

.body.dark {
  background-color: var(--purple);
  color: var(--white);
}

.logo {
  width: 12em;
}

.div-block {
  height: 100svh;
  color: var(--purple);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading {
  font-weight: 400;
}

.paragraph {
  font-weight: 700;
}

.centered-nav__banner-text {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: .875em;
  font-weight: 400;
  line-height: 1;
}

.centered-nav__toggle {
  pointer-events: auto;
  cursor: pointer;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  padding: 0;
  display: flex;
  position: relative;
}

.centered-nav__toggle-bar {
  background-color: var(--white);
  width: 1.875em;
  height: .125em;
  color: var(--white);
  position: absolute;
}

.centered-nav__banner {
  color: #fff;
  background-color: #ff4c24;
  max-width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  text-decoration: none;
  transition: background-color .15s;
  overflow: hidden;
}

.centered-nav__banner:hover {
  background-color: #ff4c24e6;
}

.navigation__dark-bg {
  background-color: var(--white);
  opacity: 0;
  pointer-events: auto;
  visibility: hidden;
  position: absolute;
  inset: 0;
}

.navigation {
  z-index: 1000;
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.centered-nav__banner-w {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.hamburger-nav__p {
  white-space: nowrap;
  margin-bottom: 0;
  font-size: 1.875em;
  line-height: 1;
}

.centered-nav {
  border-radius: .75em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 35em;
  display: flex;
  position: absolute;
  top: 2em;
  left: 50%;
  transform: translate(-50%);
}

.centered-nav__ul {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  position: relative;
}

.centered-nav__li {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  overflow: clip;
}

.centered-nav__content {
  border-bottom-right-radius: .75em;
  border-bottom-left-radius: .75em;
  grid-template-rows: 0fr;
  display: grid;
  position: relative;
  overflow: hidden;
}

.centered-nav__logo {
  pointer-events: auto;
  width: 10em;
  color: var(--white);
  justify-content: center;
  align-items: center;
  transition: color .2s;
  display: flex;
}

.centered-nav__logo:hover {
  color: #fff;
}

.centered-nav__bg {
  background-color: var(--brand);
  width: 100%;
  height: 100%;
  color: var(--white);
  border-radius: .75em;
  position: absolute;
  inset: 0%;
}

.centered-nav__banner-row {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.centered-nav__banner-inner {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding-right: 2em;
  display: flex;
}

.centered-nav__banner-item {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hamburger-nav__a {
  color: var(--black);
  justify-content: center;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.hamburger-nav__a:hover {
  border-bottom-color: #00000080;
}

.centered-nav__logo-svg {
  width: 100%;
  height: 100%;
}

.centered-nav__header {
  z-index: 1;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  color: var(--white);
  justify-content: space-between;
  align-items: center;
  padding: 1.25em 1.5em;
  display: flex;
  position: relative;
}

.centered-nav__inner {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  pointer-events: auto;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 10000%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-js, .nav-css {
  display: none;
}

.link-block {
  grid-column-gap: .4em;
  grid-row-gap: .4em;
  background-color: var(--purple);
  color: var(--white);
  border-radius: 1000em;
  justify-content: flex-start;
  align-items: center;
  padding: .5em .8em .5em 1em;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.link-block:hover {
  background-color: var(--brand-secondary);
}

.link-block.secondary {
  background-color: var(--brand);
}

.svg {
  width: 1em;
  height: 1em;
}

.svg.hand {
  transform: rotate(28deg);
}

.header-right {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  pointer-events: auto;
  display: flex;
}

.section.hero {
  background-image: linear-gradient(#0000, #b896df99);
  border-radius: 2em;
  overflow: hidden;
}

.section.short {
  min-height: 80svh;
}

.section.dark {
  background-color: #0000;
  background-image: linear-gradient(180deg, #6f4c8bb3, var(--brand-dark));
  border-radius: 2em;
}

.container {
  max-width: 60rem;
  min-height: 4em;
  padding-left: 1em;
  padding-right: 1em;
}

.container.hero {
  text-align: center;
  padding-top: 8em;
}

.container.footer {
  padding-top: 1em;
  padding-bottom: 1em;
}

.container.account {
  max-width: 40rem;
  padding-top: 8em;
}

.div-block-2 {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 10em;
  display: flex;
}

.image {
  width: 76%;
}

.heading-2 {
  margin-top: 10px;
  font-size: 6em;
  line-height: 1;
}

.heading-2.hero {
  color: var(--purple);
}

.paragraph-2 {
  color: var(--brand-secondary);
}

.div-block-3 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 4em;
  padding-bottom: 4em;
  display: flex;
}

.tag {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  border: 1px solid var(--brand);
  color: var(--purple);
  background-color: #b896df6b;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  padding: .25em .75em .25em .5em;
  display: flex;
}

.tag.dark {
  color: var(--white);
}

.paragraph-3 {
  margin-bottom: 0;
}

.hand {
  transform: translate(0);
}

.div-block-5 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: var(--brand);
  border-radius: .75em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2em 2em 2em 2.5em;
  display: flex;
}

.div-block-6 {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  color: var(--white);
  flex-flow: column;
  display: flex;
}

.paragraph-footer {
  margin-bottom: 0;
}

.footer-link {
  color: var(--black);
  margin-bottom: 0;
  text-decoration: none;
  transition: opacity .2s;
}

.footer-link:hover {
  opacity: .7;
}

.footer-link.header {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.div-block-7 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  display: flex;
}

.div-block-8 {
  flex-flow: column;
  display: flex;
}

.div-block-9 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.image-2 {
  filter: invert();
}

.link-block-2 {
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  padding-left: .3em;
  padding-right: .3em;
  transition: opacity .2s;
  display: flex;
}

.link-block-2:hover {
  opacity: .7;
}

.collection-list {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.is--orange {
  font-size: 18px;
  position: relative;
  top: 2.5px;
}

.paragraph-4 {
  grid-column-gap: .2em;
  grid-row-gap: .2em;
  color: var(--purple);
  margin-bottom: 0;
  display: flex;
}

.div-block-10 {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-10.mobile, .copyright-js {
  display: none;
}

.copyright {
  grid-column-gap: .2em;
  grid-row-gap: .2em;
  color: var(--purple);
  margin-bottom: 0;
  display: flex;
}

.copyright.mobile {
  display: none;
}

.div-block-11 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.rich-text-block {
  text-align: left;
  width: 100%;
}

.nav-items {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.nav-link {
  border-bottom: 1px solid var(--brand-secondary);
  color: var(--black);
  justify-content: center;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  text-decoration: none;
  transition: border-color .2s;
  display: flex;
}

.nav-link:hover {
  border-bottom-color: var(--black);
}

.nav-text {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.875em;
  font-weight: 400;
  line-height: 1;
}

.button {
  text-align: center;
  background-color: #472867;
  border-radius: 100em;
  width: 100%;
  transition: background-color .2s;
}

.button:hover {
  background-color: #6f4c8b;
}

.button.logout {
  color: #5a201d;
  text-align: center;
  background-color: #f4adaa;
}

.tooltip-author-wrap {
  align-items: center;
  display: flex;
}

.text-field {
  color: #6f4c8b;
  background-color: #fff;
  border: 1px #000;
  border-radius: 10000em;
}

.relative {
  margin-bottom: 10px;
  position: relative;
}

.welcome-logo {
  width: 3.5em;
}

.tour-step {
  display: none;
}

.link {
  color: #472867;
  text-decoration-color: #472867;
}

.link.forgot-password-link {
  text-align: center;
  width: 100%;
  margin-bottom: .5em;
}

.code-embed {
  display: none;
}

.tooltip-diamond {
  z-index: 2;
  background-color: #fafbfe;
  border: 1px solid #d8e3f0;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -7px 0% auto;
  transform: rotate(45deg);
  box-shadow: 0 -3px 8px #2d3e500f;
}

.tooltip-diamond.left {
  margin-top: auto;
  margin-bottom: auto;
  inset: 0 auto 10px -7px;
}

.new-tab-js {
  display: none;
}

.welcome-header {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 34px;
  line-height: 40px;
}

.welcome-container {
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  max-width: 100%;
  height: 100%;
  display: flex;
}

.welcome-section {
  text-align: center;
  min-height: 100svh;
}

.welcome-section.auth {
  height: auto;
}

.tooltip-wrapper {
  color: #333;
  text-align: left;
  background-color: #fafbfe;
  border: 1px solid #d8e3f0;
  border-radius: 10px;
  width: 300px;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.5em;
  display: block;
  position: absolute;
  box-shadow: 1px 1px 8px 1px #2d3e501f;
}

.tooltip-container {
  z-index: 3;
  background-color: #fafbfe;
  border-radius: 9px 9px 0 0;
  padding: 20px;
  font-size: 12.5px;
  position: relative;
}

.welcome-logo-welcome {
  color: #b896df;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.welcome-logo-welcome:hover {
  color: #472867;
}

.loading-icon {
  width: 2em;
  height: 2em;
}

.code-2 {
  display: none;
}

.welcome-block {
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 4em 2em;
  display: flex;
}

.welcome-block.auth {
  min-height: 100svh;
}

.welcome-block.auth.login {
  justify-content: center;
}

.loader-wrapper {
  display: none;
}

.tooltip-title {
  margin-bottom: 6px;
  font-size: 110%;
  font-weight: 800;
}

.tooltip-svg {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.tooltip-anchor {
  z-index: 100;
  justify-content: center;
  width: 100%;
  height: 10px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  display: flex;
  position: absolute;
  inset: 100% 0% 0;
}

.tooltip-anchor.right {
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 100%;
  margin-right: -12px;
  padding-left: 12px;
  inset: 0% 0% 0% auto;
}

.loader {
  z-index: 1000;
  pointer-events: none;
  color: #eee3f7;
  background-color: #b896df;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.tooltip-author {
  border-radius: 50%;
  width: 32px;
  margin-right: 10px;
}

.scripts {
  display: none;
}

.form-wrapper {
  z-index: 50;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 400px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
  overflow: visible;
}

.tooltip-close {
  z-index: 5;
  color: #3f3e46;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.tooltip-close:hover {
  background-color: #002aff1a;
}

.form {
  text-align: left;
}

.form.fgp {
  margin-bottom: 1em;
}

.tooltip-navigation {
  z-index: 3;
  color: #64636e;
  background-color: #fafbfe;
  border-top: 1px solid #d8e3f0;
  border-radius: 0 0 9px 9px;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding: 8px 20px;
  display: flex;
  position: relative;
  bottom: 0;
}

.tooltip-navigation.top {
  border-top-style: none;
  border-bottom: 1px solid #d8e3f0;
  border-radius: 9px 9px 0 0;
}

.text-block {
  margin-bottom: 8px;
}

.div-block-12 {
  padding-top: 1em;
}

.div-block-13 {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 4em;
  padding-bottom: 4em;
  display: flex;
}

.div-block-13.dark {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  color: var(--white);
  padding-left: 2em;
  padding-right: 2em;
}

.stack-scripts, .stack-js {
  display: none;
}

.dropping-stack-card__start {
  justify-content: space-between;
  display: flex;
}

.dropping-stack__collection {
  padding-bottom: 6em;
  padding-right: 6em;
}

.dropping-stack {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.dropping-stack__control-svg {
  width: 40%;
}

.droping-stack-card__visual-img {
  object-fit: cover;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.dropping-stack-card__visual-before {
  padding-top: 62.5%;
}

.dropping-stack__item {
  will-change: transform, opacity;
  -webkit-user-select: none;
  user-select: none;
  position: absolute;
}

.dropping-stack-card__end {
  display: flex;
}

.dropping-stack__controls {
  grid-column-gap: .375em;
  grid-row-gap: .375em;
  display: flex;
}

.dropping-stack-card__h {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.75em;
  font-weight: 600;
  line-height: .9;
}

.dropping-stack__control-circle {
  color: #201d1d;
  background-color: #f4f4f4;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  display: flex;
  position: relative;
}

.dropping-stack__control-circle.is--prev {
  color: #f4f4f4;
  background-color: #f4f4f433;
}

.dropping-stack-card__content {
  width: 100%;
  height: 100%;
  color: var(--black);
  flex-flow: column;
  justify-content: space-between;
  padding: 3em;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.dropping-stack-card__content.light {
  color: var(--white);
}

.dropping-stack__list {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.dropping-stack-card {
  color: #201d1d;
  background-color: #f4adaa;
  border-radius: 1.25em;
  width: min(50em, 100vw - 10em);
  position: relative;
  overflow: hidden;
}

.dropping-stack-card.is--pink {
  background-color: #e4bdf2;
}

.dropping-stack-card.is--light {
  background-color: #eee3f7;
}

.dropping-stack-card.is--purple {
  color: #f4f4f4;
  background-color: #472867;
}

.dropping-stack-card.is--dark {
  color: #f4f4f4;
  background-color: #160920;
}

.dropping-stack__control {
  cursor: pointer;
  border-radius: 50%;
}

.dropping-stack__control.is--prev {
  transform: scaleX(-1);
}

.dropping-stack-card__words {
  width: 45%;
}

.dropping-stack-card__before {
  padding-top: 62.5%;
}

.dropping-stack-card__p {
  margin-bottom: 0;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.4;
}

.dropping-stack-card__visual {
  text-align: left;
  border-radius: .5em;
  width: 35%;
  position: relative;
}

.stack-css {
  display: none;
}

.podcast-icon {
  filter: invert();
}

.podcast-link {
  background-color: var(--brand);
  border-radius: 100000em;
  justify-content: center;
  align-items: center;
  width: 4em;
  height: 4em;
  padding-left: .3em;
  padding-right: .3em;
  transition: background-color .2s;
  display: flex;
}

.podcast-link:hover {
  background-color: var(--purple);
  opacity: .7;
}

.podcast-list {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-14 {
  background-color: var(--brand);
  border-radius: 1em;
  max-width: 20rem;
  margin-top: 1em;
  margin-bottom: 2em;
  padding: 1em;
}

.image-3 {
  border-radius: 3px;
  width: 100%;
}

.div-block-34 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  color: #f5f5f5;
  text-align: center;
  background-image: linear-gradient(205deg, #b896df, #decdf1);
  border: 2px solid #eee3f7;
  border-radius: 1em;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding: 2em 2em 1em;
  display: flex;
}

.list {
  color: #401e53;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 1em;
  padding-left: 2em;
  padding-right: 1em;
  display: flex;
}

.heading-6 {
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(270deg, #472867, #6f4c8b);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}

.text-block-3 {
  color: #6f4c8b;
  font-size: 14px;
  line-height: 18px;
}

.div-block-57 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.placeholder {
  width: 1em;
  height: 2em;
}

.heading-7 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(9deg, #eee3f7, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4em;
  line-height: 1;
}

.heading-7.crossed {
  opacity: .7;
  font-size: 2em;
  text-decoration: line-through;
}

.logo-au {
  width: 12em;
}

.div-block-58 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.div-block-56 {
  text-align: center;
}

.profile_form-header {
  justify-content: space-between;
  align-items: center;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
  position: sticky;
  top: 0;
}

.relative-2 {
  position: relative;
}

.dash_content {
  background-color: #eee3f7;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2em;
  padding-right: 2em;
  overflow: scroll;
}

.profile_h1 {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 25px;
}

.profile_section {
  text-align: left;
  background-color: #fff;
  border: .5px solid #f3f3f3;
  border-radius: 20px;
  width: 100%;
  margin-bottom: 2rem;
  padding: 30px 20px 15px;
  position: relative;
}

.profile_section.top {
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

.gift-js {
  display: none;
}

.bottom-form {
  margin-bottom: 2em;
}

.text-field-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.p {
  margin-bottom: 0;
}

.p.secondary {
  opacity: .65;
  color: #472867;
  font-size: 11px;
  line-height: 16px;
}

.button-2 {
  color: #f5f5f5;
  text-align: center;
  background-color: #472867;
  border-radius: 100em;
  width: 100%;
  padding: 9px 15px;
  transition: background-color .2s;
}

.button-2:hover {
  background-color: #6f4c8b;
}

.button-2.logout {
  color: #5a201d;
  text-align: center;
  background-color: #f4adaa;
}

.button-2.secondary {
  color: #6f4c8b;
  background-color: #eee3f7;
}

.button-2.secondary:hover {
  background-color: #eee3f78c;
}

.div-block-59 {
  justify-content: center;
  align-items: center;
  padding-top: .5em;
  display: flex;
}

.birthday-js {
  display: none;
}

.success-message {
  border-radius: 6px;
}

.streak-js {
  display: none;
}

.text-field-2 {
  color: #6f4c8b;
  background-color: #fff;
  border: 1px #000;
  border-radius: 1.25em;
  padding: 8px 12px;
}

.text-field-2.date {
  width: 100%;
  min-height: 2em;
  margin-bottom: 10px;
  padding: 8px 12px;
}

.error-message {
  border-radius: 10000em;
}

.div-block-60 {
  justify-content: center;
  align-items: center;
  padding-top: 1em;
  display: flex;
}

.redirect-js {
  display: none;
}

.div-block-61 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100svh;
  display: flex;
}

.input-label {
  color: #4b4f56;
  margin-bottom: 3px;
  padding-left: 10px;
  font-size: 13px;
}

.div-block-62 {
  text-align: center;
}

.profile_section-head {
  padding-bottom: 10px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 600;
}

.edit-profile {
  z-index: 3;
  color: #000;
  border: 1px solid #f3f3f3;
  border-radius: 50px;
  margin-left: 10px;
  padding: 9px 20px;
  text-decoration: none;
  transition: background-color .2s, border-color .2s;
  position: relative;
}

.edit-profile.button {
  color: #f5f5f5;
}

.edit-profile.button.profile {
  justify-content: center;
  align-items: center;
  margin-left: 0;
  display: flex;
}

.profile_column {
  text-align: left;
  flex-flow: column;
  display: flex;
}

.profile_flex {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: relative;
}

.save-button {
  background-color: #6f4c8b;
  border-radius: 50px;
  margin-left: 10px;
  padding-left: 20px;
  padding-right: 20px;
  transition: opacity .2s;
  display: none;
}

.save-button:hover {
  opacity: .8;
}

.save-button.button {
  z-index: 3;
  margin-left: 0;
  position: relative;
}

.input-preview {
  background-color: #1609200d;
  border: 1px #000;
  border-radius: 5px;
  padding: .5em .5em .5em 10px;
  font-size: 16px;
  font-weight: 400;
}

.input-preview:focus {
  background-color: #f8f8f8;
}

.block-inputs {
  z-index: 2;
  mix-blend-mode: color-dodge;
  background-color: #160920;
  display: flex;
  position: absolute;
  inset: 0%;
}

.ms-button-flex {
  grid-column-gap: 8px;
  color: #f5f5f5;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ms-dropdown-bold {
  font-size: 1.2em;
  font-weight: 700;
}

.div-block-92 {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: #16092099;
  text-align: left;
  background-color: #1609200d;
  border: 1px solid #1609200d;
  border-radius: 1em;
  flex-flow: column;
  padding: 1em 1.25em;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  display: flex;
}

.ms-dropdown-wrap {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  font-size: .9rem;
}

.ms-dropdown-padding {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  line-height: 1.6em;
  display: flex;
}

.ms-button {
  color: #fff;
  text-align: center;
  letter-spacing: .03em;
  background-color: #2962ff;
  border: 1px solid #2962ff;
  border-radius: 8px;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding: .6rem 1rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color .2s, box-shadow .2s cubic-bezier(.645, .045, .355, 1), background-color .2s cubic-bezier(.645, .045, .355, 1);
  position: relative;
  box-shadow: 1px 1px 5px #ffffff40, 0 10px 20px -5px #2d3e504d;
}

.ms-button:hover {
  box-shadow: none;
  color: #fff;
  background-color: #1051b9;
}

.ms-button:active {
  background-color: #0a3092;
}

.ms-button.is-delete {
  width: 100%;
  box-shadow: none;
  color: #f4adaa;
  text-align: center;
  background-color: #5a201d;
  border-style: none;
  border-width: 0;
  border-radius: 100em;
  transition-property: none;
}

.ms-button.is-delete.is-solid {
  color: #fff;
  background-color: #5a201d;
  margin-top: 5px;
}

.disclaimer-title {
  text-transform: uppercase;
}

.ms-dropdown-list.w--open {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  margin-top: 8px;
  box-shadow: 5px 9px 10px #0000001a;
}

.div-block-93 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.text-field {
  border-radius: 1.5em;
}

.link-2 {
  color: var(--brand-secondary);
  text-decoration: none;
}

.form-2 {
  text-align: left;
}

.form-block {
  width: 100%;
  max-width: 40rem;
}

.ms-failed-banner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  background-color: #f4adaa;
  border-radius: 1.5em;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  position: relative;
}

.ms-failed-icon {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
  overflow: hidden;
}

.ms-failed-link {
  border-bottom: 1px solid #fff;
}

.app-link-js {
  display: none;
}

.heading-8 {
  margin-top: 0;
  margin-bottom: 0;
}

.text-span-2 {
  background-color: var(--brand);
  color: var(--white);
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}

@media screen and (max-width: 991px) {
  .dropping-stack-card__before {
    padding-top: 75%;
  }

  .dash_contain {
    max-width: 100%;
  }

  .ms-button {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .centered-nav {
    width: auto;
    top: 1em;
    left: 1em;
    right: 1em;
    transform: none;
  }

  .div-block-5 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2em;
    padding-bottom: 1.5em;
    padding-left: 2em;
  }

  .div-block-9 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .image-2 {
    width: 100%;
    height: 100%;
  }

  .link-block-2 {
    width: 3em;
    height: 3em;
  }

  .collection-list {
    flex-flow: column;
  }

  .div-block-10 {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-end;
    width: auto;
    display: none;
  }

  .div-block-10.mobile {
    display: flex;
  }

  .copyright {
    display: none;
  }

  .copyright.mobile {
    display: flex;
  }

  .dropping-stack-card__start {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: column;
  }

  .dropping-stack__collection {
    padding-bottom: 4.5em;
    padding-right: 4.5em;
  }

  .dropping-stack-card__h {
    font-size: 10vw;
  }

  .dropping-stack-card__content {
    padding: 7.5vw;
  }

  .dropping-stack-card {
    width: min(50em, 100vw - 6.5em);
  }

  .dropping-stack-card__words {
    width: 100%;
  }

  .dropping-stack-card__before {
    padding-top: 150%;
  }

  .dropping-stack-card__visual {
    width: 60%;
  }

  .text-field-2.date {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .container.hero {
    overflow: hidden;
  }

  .container.dark {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-2 {
    min-width: 25rem;
  }

  .heading-2 {
    font-size: 4em;
  }

  .div-block-3 {
    padding-top: 2em;
    padding-bottom: 3em;
  }

  .div-block-4 {
    justify-content: center;
    align-items: center;
    display: flex;
    overflow: visible;
  }

  .div-block-5 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    padding-right: 1.5em;
  }

  .link-block-2 {
    width: 3em;
    height: 3em;
  }

  .welcome-block {
    grid-row-gap: 0em;
    justify-content: center;
    height: 100svh;
    padding-top: 6em;
    padding-bottom: 4em;
  }

  .welcome-block.auth {
    justify-content: space-between;
    height: auto;
    padding-left: 1em;
    padding-right: 1em;
  }

  .form-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-3, .heading-4 {
    margin-top: 10px;
    font-size: 28px;
    line-height: 34px;
  }

  .div-block-13.dark {
    padding-top: 3em;
  }

  .podcast-link {
    width: 3em;
    height: 3em;
  }

  .div-block-34 {
    border-radius: 1.5em;
  }

  .text-block-3 {
    letter-spacing: .5px;
  }

  .profile_form-header {
    padding-top: .5em;
    padding-bottom: 1em;
  }

  .dash_content {
    border-radius: 2.25em;
    padding-left: .5em;
    padding-right: .5em;
  }

  .profile_h1 {
    padding-top: 10px;
    padding-left: 10px;
  }

  .profile_section {
    border-radius: 2em;
    margin-bottom: .5rem;
    padding: 20px .5em 0;
  }

  .profile_section.top {
    padding: .5em;
  }

  .profile_section.bottom {
    padding-bottom: .5em;
  }

  .text-field-2.date {
    max-width: 100%;
  }

  .ms-button {
    width: 100%;
    min-height: auto;
    padding: .6em 1.3em;
    font-size: 14px;
    font-style: normal;
  }

  .text-span {
    background-color: var(--purple);
    color: var(--white);
    border-radius: 6px;
    padding: 3px 6px;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
  }
}


