.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

html, body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: linear-gradient(135deg, #1e182c, #1c1137);
}

.center {
  text-align: center;
}

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

.italic {
  font-style: italic;
}

text.dark {
  color: #231e2a;
}
text.small {
  font-size: 0.8rem;
}
text.medium {
  font-size: 1rem;
}
text.large {
  font-size: 1.5rem;
}
text.href {
  text-decoration: underline;
  color: red;
}
text.href:hover {
  cursor: pointer;
}
text.href.dark {
  color: #00FFB6;
}
text.href.dark:hover {
  color: #00FFB6;
}
text.href.light {
  color: #6917a8;
}
text.href.light:hover {
  color: #6917a8;
}
text.italic {
  font-style: italic;
}
text.bold {
  font-weight: 700;
}
text.header {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
}

header {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
}
header.medium {
  font-size: 1rem;
}
header.dark {
  color: #231e2a;
}
header.light {
  color: #f1eef5;
}

subhead {
  width: 100%;
  font-size: 0.8rem;
  font-weight: 400;
}
subhead.center-text {
  text-align: center;
}

spacer {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
}
spacer.horz {
  width: 100%;
}
spacer.horz.small {
  height: 1rem;
}
spacer.horz.medium {
  height: 2rem;
}
spacer.horz.large {
  height: 3.5rem;
}
spacer.horz.extra-large {
  height: 5rem;
}
spacer.horz.safeZone-top {
  height: 50px;
}
spacer.vert {
  height: 100%;
}
spacer.vert.x-small {
  width: 0.5rem;
}
spacer.vert.small {
  width: 1rem;
}
spacer.vert.medium {
  width: 2rem;
}
spacer.vert.large {
  width: 3.5rem;
}
spacer.vert.extra-large {
  width: 5rem;
}
spacer spacer-bar {
  border-top: 1px solid;
  width: 100%;
  margin: 0 1rem;
}
spacer endpoint-round {
  min-width: 10px;
  height: 10px;
  background: #00FFB6;
  border-radius: 100%;
}
spacer endpoint-arrow {
  min-width: 10px;
  height: 10px;
  position: absolute;
}
spacer endpoint-arrow:first-of-type {
  border-top: 1px solid #00FFB6;
  border-left: 1px solid #00FFB6;
  transform: rotate(-45deg);
  left: 1px;
}
spacer endpoint-arrow:last-of-type {
  border-right: 1px solid #00FFB6;
  border-bottom: 1px solid #00FFB6;
  transform: rotate(-45deg);
  right: 1px;
}
spacer.dark spacer-bar {
  border-top-color: #00FFB6;
}
spacer.dark spacer-text {
  color: #f1eef5;
  font-weight: 700;
}

app-root.web {
  height: 100% vh !important;
}
app-root.web spacer.safeZone-top {
  height: 10px;
}

label {
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 0.7rem;
  width: 100%;
  transition: all 0.5s ease-in;
  padding-left: 10px;
}
label span {
  color: #00FFB6;
}
label.dark {
  border: 1px solid #d4cbe0;
  border-radius: 10px;
}
label.dark.focus:not(.no-transition) {
  border-color: #00FFB6;
  position: relative;
  padding-top: 5px;
}
label.dark.focus:not(.no-transition)::before {
  font-size: 0.8rem;
  content: attr(data-placeholder);
  position: absolute;
  background: #231e2a;
  top: -12px;
  left: 10px;
  padding: 0 0.5rem;
  color: white;
}
label.dark.error {
  animation: shakeLR 0.5s ease-in-out;
}
label.dark input {
  background: none;
  border: none;
  color: #f1eef5;
  outline: none;
}

@keyframes shakeLR {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-10px);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(-10px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
input {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  padding: 0.5rem 0;
  padding-left: 0.5rem;
  border: none;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
  overflow: auto;
}
input::-moz-placeholder {
  color: #f1eef5;
  opacity: 0.5;
}
input::placeholder {
  color: #f1eef5;
  opacity: 0.5;
}

icon {
  border: 1px solid #f1eef5;
  color: #00FFB6;
  transition: all 0.2s;
  cursor: pointer;
}
icon.active {
  background: #00FFB6;
  color: #231e2a;
  border-color: #00FFB6;
  opacity: 1;
}
icon.innactive {
  border-color: #f1eef5;
  opacity: 0.25;
}
icon.complete {
  border-color: #00FFB6;
  background: #00FFB6;
  color: #231e2a;
}
icon.round {
  border-radius: 100%;
  padding: 0.5rem;
}
icon:hover {
  opacity: 1;
}
icon.no-click {
  pointer-events: none;
}

href {
  font-style: italic;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.2s;
}
href.left {
  text-align: left;
}
href.highlight {
  color: #00FFB6 !important;
}
href:hover {
  color: #00FFB6;
}
href.dark {
  color: #6917a8;
}
href.dark:hover {
  filter: brightness(2.25);
}
href.small {
  font-size: 0.8rem;
}
href.medium {
  font-size: 1rem;
}
href.large {
  font-size: 1.5rem;
}

card-group {
  display: flex;
  flex-flow: row nowrap;
  margin: 0 1rem;
  position: relative;
  width: 100%;
  position: relative;
  overflow: hidden;
}
card-group card {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  transition: left 0.5s ease-out;
}
card-group card.active {
  left: 0;
  opacity: 1;
}
card-group card.next {
  left: 110%;
  opacity: 0;
}
card-group card.prev {
  left: -110%;
  opacity: 0;
}

modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 24, 44, 0.8), rgba(28, 17, 55, 0.8));
  color: #231e2a;
  display: flex;
  transition: all 0.5s;
  justify-content: center;
  align-items: flex-end;
  z-index: 9000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
modal.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s, display 0s;
}
modal.hidden modal-container {
  opacity: 0;
}
modal.hidden modal-container.from-bottom {
  bottom: -110%;
  transition: opacity 1s, bottom 1s;
}
modal.active {
  opacity: 1;
}
modal.active modal-container {
  opacity: 1;
}
modal.active modal-container.from-bottom {
  bottom: 0%;
}

modal-container {
  width: 100%;
  margin: 1.5rem;
  margin-bottom: 0;
  padding: 2rem 1rem;
  box-sizing: border-box;
  height: 500px;
  background: #d2d6e7;
  display: flex;
  flex-flow: column wrap;
  align-content: flex-start;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  overflow: hidden;
  position: absolute;
  transition: all 0.5s;
  filter: drop-shadow(0 -5px 10px #6917a8);
}
modal-container::before {
  content: attr(data-label);
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
modal-container.light {
  background: linear-gradient(45deg, #d4cbe0, #d2d6e7);
  color: #231e2a;
}

modal-close {
  position: absolute;
  top: 35px;
  right: 20px;
  color: #231e2a;
  cursor: pointer;
}
modal-close:hover {
  font-weight: 700;
  text-shadow: 0 0 2px #231e2a;
}

modal-footer {
  border-top: 1px solid #231e2a;
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 0.8rem;
}

modal-content {
  width: 100%;
  height: 100px;
  display: flex;
  flex-flow: row wrap;
  flex-grow: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  align-content: flex-start;
  position: relative;
}

search-bar-container {
  width: 100%;
  display: flex;
  margin: 1rem 0;
  filter: drop-shadow(0 8px 5px rgba(35, 30, 42, 0.2));
  position: relative;
}

.search-bar-input {
  width: 100%;
  padding: 10px;
  background: #f1eef5;
  color: #7d7688;
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1rem;
  padding-left: 30px;
  outline: none;
  text-overflow: ellipsis;
}
.search-bar-input::-moz-placeholder {
  color: #7d7688;
  opacity: 0.8;
}
.search-bar-input::placeholder {
  color: #7d7688;
  opacity: 0.8;
}

search-bar-icon {
  position: absolute;
  left: 0;
  top: 10%;
  color: #d4cbe0;
  padding: 0.25rem;
  z-index: 9000;
}

list {
  width: 100%;
}

list-item {
  width: 90%;
  left: 0px;
  background: #f2f2f6;
  color: #7d7688;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 10px;
  margin: 0.25rem 0;
  align-self: flex-start;
  z-index: 1;
  position: relative;
  display: flex;
  transition: all 0.2s, font-weight 0s;
}
list-item:last-of-type {
  border-bottom: none;
}
list-item:hover {
  left: 15px;
  font-weight: 700;
}
@media (hover: none) {
  list-item:hover {
    left: initial;
    font-weight: initial;
  }
}

content {
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  font-size: 1rem;
}
content.no-padding_LR {
  padding-left: 0;
  padding-right: 0;
}
content.center {
  justify-content: center;
}
content.justify {
  justify-content: space-between;
}
content.round-corner {
  border-radius: 10px;
}
content.group {
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}
content.group > * {
  transition: all 0.5s ease-in;
}
content.group content.skip {
  transition: none !important;
}
content.group content[data-position=active] {
  left: 0;
  opacity: 1;
}
content.group content[data-position=next] {
  left: 110%;
  opacity: 0;
}
content.group content[data-position=prev] {
  left: -110%;
  opacity: 0;
}
content.image {
  padding: 0;
  flex-flow: nowrap;
}
content.image img {
  background: blue;
  width: 150px;
  height: 100px;
  margin-right: 1rem;
}
content.dark {
  color: #f1eef5;
}
content.light {
  color: #231e2a;
}
content.alt {
  background-color: #6917a8;
}
content.nowrap {
  flex-flow: row nowrap;
  align-items: flex-start;
}
content.shadow.light {
  filter: drop-shadow(0 0.5rem 0.5rem #d4cbe0);
  background: #f2f2f6;
}
content.shadow.dark {
  filter: drop-shadow(0 0.5rem 0.5rem #18191b);
  background: #7d7688;
}
content.shadow.alt {
  filter: drop-shadow(0 0.5rem 0.5rem #18191b);
}

button {
  border-radius: 10px;
  padding: 0.5rem 2rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  border: none;
  justify-content: center;
  box-sizing: border-box;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 0 1px transparent;
  transition: width 0.5s ease-in, padding 0.5s ease-in, margin 0.5s ease-in;
}
button.marginR_x-small {
  margin-right: 0.5rem;
}
button.marginR_small {
  margin-right: 1rem;
}
button.full-width {
  width: 100%;
}
button.zero-width {
  width: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
button.marginRL-small {
  margin: 0 0.5rem;
}
button span.before-text {
  margin-right: 0.5rem;
}
button span.after-text {
  margin-left: 0.5rem;
}
button.primary {
  color: #d2d6e7;
  background: linear-gradient(100deg, #6917a8, #e344ff);
}
button.disabled, button.innactive {
  background: inherit;
  color: #d4cbe0;
  opacity: 1;
}
button.innactive {
  box-shadow: inset 0 0 0 1px #d4cbe0;
}
button.disabled {
  border-color: transparent;
  background: #7d7688;
  color: #f1eef5;
  opacity: 0.25;
  pointer-events: none;
}

.sw-safe-zone {
  width: 100%;
}
.sw-safe-zone.top {
  height: 75px;
}

app-root {
  width: 100%;
  max-width: 800px;
  height: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, #1e182c, #1c1137);
  display: flex;
  align-content: center;
  flex-flow: column wrap;
  position: relative;
  font-family: "Poppins", sans-serif;
}

splash-page {
  position: absolute;
  width: 100%;
  max-width: 800px;
  padding: 0 1rem;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-flow: column wrap;
  background: #231e2a;
  background-image: url("/assets/logo-background.1a1810cf.svg");
  animation: slide 1000s linear infinite;
  justify-content: center;
  align-items: center;
  transition: all 1s ease-in;
}
@keyframes slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2000% -2000%;
  }
}
splash-page logo {
  width: 60%;
  max-width: 500px;
  height: 100%;
  background-image: url("/assets/ur-logo.9cddb6f6.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
splash-page .splash-footer {
  position: absolute;
  bottom: 72px;
  width: 100%;
  display: flex;
  justify-content: center;
}
splash-page .splash-footer button {
  width: 70%;
  max-width: 300px;
}

login-page {
  position: absolute;
  width: 100%;
  max-width: 800px;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: flex-start;
  z-index: 900;
  box-sizing: border-box;
}
login-page logo {
  width: 40%;
  max-width: 500px;
  height: 200px;
  background-image: url("/assets/ur-logo.9cddb6f6.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  align-self: flex-start;
}

signup-page {
  position: absolute;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: flex-start;
  z-index: 900;
}
signup-page logo {
  width: 40%;
  max-width: 500px;
  height: 200px;
  background-image: url("/assets/ur-logo.9cddb6f6.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  align-self: flex-start;
}

@media (hover: none) {
  body {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}/*# sourceMappingURL=style.css.map */