@import url("/assets/_variables-3fa889c4.css");
@import url("/assets/form-d60cf7fb.css");
@import url("/assets/spacing-021f9c90.css");
@import url("/assets/toggle-c1e902c4.css");

*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

html {
  font-family: InterVariable, Roboto, system-ui, sans-serif;
  font-feature-settings: "cv06";
  font-variation-settings: normal;
  font-optical-sizing: auto;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.5;
}

body {
  background-color: var(--color-body-background);
  color: var(--color-primary-text);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 1rem;
  padding-bottom: 1rem;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

.container {
  max-width: 1320px;
  width: 100%;
  padding-right: .75rem;
  padding-left: .75rem;
  padding-bottom: .75rem;
  margin-right: auto;
  margin-left: auto;
}


/* Typography */

h5,
.h5 {
  font-size: 1.25rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-primary-text);
}

.small,
small {
  font-size: .875em;
}

.bold {
  font-weight: 600;
}

/* Typography */

/* Flex */

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

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

.justify-content-around {
  justify-content: space-around;
}

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

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

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

.align-items-center {
  align-items: center;
}

/* Flex */

/* Navigation */

.page-header {
  padding: 0 1rem;
  font-weight: 600;
  font-size: 1.5rem;
  z-index: 2;
}

.page-header.compact {
  padding-left: 0;
  font-size: 1.25rem;
}

.section-title {
  font-size: .7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: gray;
}

.navigation {
  height: 60px;
}

.navigation .navigation-control {
  width: 24px;
  height: 24px;
}

.navigation svg.navigation-control {
  fill: var(--color-primary-text);
}

.sheet-header {
  height: 30px;
  font-weight: 600;
}

/* Navigation */

/* Alert */

.alert {
  padding: .5rem 1rem;
  background-color: var(--color-alert-background);
  border-radius: var(--border-radius-medium);
}

.alert .alert-heading {
  color: var(--color-alert-text);
  font-weight: 500;
  font-size: .875rem;
}

/* Alert */

/* Notification */

.notification-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  padding-bottom: 2rem;
  align-items: center;
  z-index: 12;
}

.notification-container .notification-text {
  color: #6a7282;
  font-size: .75rem;
  margin-top: .25rem;
}

.notification-container .notification {
  padding: 1rem;
  display: flex;
  border-radius: var(--border-radius-medium);
  width: 90%;
  max-width: 384px;
  background-color: #fff;
  border: 1px solid rgba(138, 138, 138, 0.1);
}

.notification-container .notification.success {
  background-color: var(--color-green-background);
  color: var(--color-green);
  border: 1px solid rgba(1, 102, 48, .1);
}

.notification-container .notification.error {
  background-color: var(--color-red-background);
  color: var(--color-red);
  border: 1px solid rgba(159, 7, 18, .1);
}

.notification-container svg.icon-green-check {
  color: #05df72;
  width: 1.25rem;
  height: 1.25rem;
}

.notification-container svg.icon-red-cross {
  color: #ff6467;
  width: 1.25rem;
  height: 1.25rem;
}

.notification-container .notification-body {
  flex: 1;
  width: calc(.25rem * 0);
  margin-left: .75rem;
}

.notification-container .notification-heading {
  font-weight: 500;
  font-size: .875rem;
}

/* Notification */

.d-none {
  display: none;
}

[aria-hidden="true"] {
  visibility: hidden;
  pointer-events: none;
}

.btn,
.btn-block,
.btn-transparent {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.btn {
  border-radius: var(--border-radius-infinity);
  color: var(--color-primary-text);
  font-size: .9rem;
  font-weight: 500;
  display: inline-block;
  padding: .5rem 2rem;
  text-align: center;
  text-decoration: none;
}

.btn-transparent {
  font-size: .875rem;
  background-color: transparent;
}

.btn-block {
  width: 100%;
  border-radius: var(--border-radius-medium);
  line-height: 1;
  color: var(--color-accent);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-emphasis-background);
  padding-top: 14px;
  padding-bottom: 14px;
}

.btn-block.btn-destructive {
  color: var(--color-red);
}

.badge {
  font-weight: 500;
  font-size: .75rem;
  line-height: 1rem;
  padding: 2px .5rem;
  border-radius: var(--border-radius-small);
  align-items: center;
  display: inline-flex;
}

hr {
  margin: .5rem 0;
}

.text-decoration-none {
  text-decoration: none;
}

.text-dark {
  color: var(--color-primary-text);
}

.text-muted {
  color: var(--color-muted-text);
}

.text-blue {
  color: var(--color-blue);
}

.text-indigo {
  color: var(--color-indigo);
}

.indigo {
  background-color: var(--color-indigo-background);
  color: var(--color-indigo);
}

.blue {
  background-color: var(--color-blue-background);
  color: var(--color-blue);
}

.red {
  background-color: var(--color-red-background);
  color: var(--color-red);
}

.hint {
  font-size: .75rem;
  padding-bottom: 1.25rem;
  text-align: center;
}

.card,
.card.dashed {
  border-radius: var(--border-radius-medium);
  margin-bottom: .5rem;
  padding: 1rem;
}

.card {
  background-color: var(--color-emphasis-background);
}

.card.card-expandable {
  background: no-repeat right .75rem center url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' stroke='rgb(192, 192, 192)' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") var(--color-emphasis-background);
}

.card a {
  color: var(--color-primary-text);
  text-decoration: none;
}

.card.card-dashed {
  background-color: transparent;
  border: 2px dashed rgba(0, 0, 0, 0.05);
}

.participants-list {
  font-size: .85rem;
  padding-inline-start: .5rem;
  list-style: none;
}

.participants-list li {
  margin: .75rem 0;
}

.participants-list li:first-child {
  margin-top: .25rem;
}

.participants-list li:last-child {
  margin-bottom: .25rem;
}

.participants-list li svg {
  background-color: #f3f4f6;
  fill: #c1c1c1;
  height: var(--avatar-sm-size);
  width: var(--avatar-sm-size);
}

.participants-list li img {
  height: var(--avatar-sm-size);
  display: inline;
}

.participants-list li img,
.participants-list li svg {
  border-radius: var(--border-radius-infinity);
  margin-right: .5rem;
}

.preloader-container {
  position: relative;
  height: 4px;
  display: block;
  width: 5rem;
  margin: .5rem 0 1rem 0;
  overflow: hidden;
  border-radius: 2px;
}

.preloader-container .preloader {
  background-color: var(--color-blue);
}

.preloader-container .preloader:before {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  border-radius: 2px;
}

.preloader-container .preloader:after {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
  border-radius: 2px;
}

.btn-floating {
  bottom: 2rem;
  right: 2rem;
  position: fixed;
  border-radius: var(--border-radius-infinity);
  background-color: var(--color-accent);
  padding: .75rem;
  color: white;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.btn-floating * {
  pointer-events: none;
}

/* Account */

.avatar,
.avatar-small,
.avatar-placeholder,
.avatar-placeholder-small {
  border-radius: var(--border-radius-infinity);
}

.avatar {
  max-width: 100%;
  height: var(--avatar-lg-size);
}

.avatar-small {
  max-width: 100%;
  height: var(--avatar-md-size);
}

.avatar-placeholder {
  background-color: #f3f4f6;
  height: var(--avatar-lg-size);
  width: var(--avatar-lg-size);
  overflow: hidden;
  fill: #c1c1c1;
}

.avatar-placeholder svg {
  color: #d1d5dc;
}

.avatar-placeholder-small {
  background-color: #f4f5f7;
  height: var(--avatar-md-size);
  width: var(--avatar-md-size);
  overflow: hidden;
  fill: #c1c1c1;
}

.attributions {
  margin: auto auto 0;
  font-size: .75rem;
}

.attributions a {
  color: var(--color-muted-text);
}

/* Account */

/* Toast */

.toast {
  visibility: visible;
  max-width: 180px;
  text-align: center;
  border-radius: var(--border-radius-infinity);
  padding: .5rem 2rem;
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: var(--toast-bottom-padding);
  opacity: 0;
  margin: 0 auto;
  font-size: .85rem;
  font-weight: 400;
  background-color: rgba(33, 37, 41, .9);
  color: white;
  animation: hideToast 0.5s;
  -webkit-animation: hideToast 0.5s;
}

.toast.show {
  visibility: visible;
  bottom: var(--toast-bottom-padding);
  opacity: 1;
  animation: showToast 0.5s;
  -webkit-animation: showToast 0.5s;
}

/* Toast */

/* Dialog */

dialog {
  border: var(--dialog--boder);
  border-radius: var(--border-radius-medium);
  padding: 1.5rem 1rem 1rem;
  min-width: 350px;
  max-width: 80vw;
  margin: auto;
  background-color: var(--color-dialog-background);
  color: var(--color-secondary-text);
  font-size: .875em;
}

dialog[open] {
  animation: var(--animation-slide-in-up) forwards;
}

dialog a:focus,
dialog button:focus {
  outline: none;
}

dialog .title,
dialog .body {
  text-align: center;
}

dialog .title {
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-text);
}

dialog .footer {
  margin-top: 1rem;
}

dialog svg {
  color: var(--color-red-background);
  width: 1.5rem;
  height: 1.5rem;
}

dialog .dialog-circle-icon {
  background-color: var(--color-red);
  border-radius: var(--border-radius-infinity);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
}

dialog::backdrop {
  backdrop-filter: blur(3px);
  background-color: var(--color-backdrop);
}

/* Dialog */

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%
  }

  60% {
    left: 100%;
    right: -90%
  }

  100% {
    left: 100%;
    right: -90%
  }
}

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%
  }

  60% {
    left: 100%;
    right: -90%
  }

  100% {
    left: 100%;
    right: -90%
  }
}

@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%
  }

  60% {
    left: 107%;
    right: -8%
  }

  100% {
    left: 107%;
    right: -8%
  }
}

@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%
  }

  60% {
    left: 107%;
    right: -8%
  }

  100% {
    left: 107%;
    right: -8%
  }
}

@keyframes slide-in-up {
  from {
    transform: translateY(100%);
  }
}

@keyframes slide-out-down {
  to {
    transform: translateY(100%);
  }
}

@keyframes showToast {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: var(--toast-bottom-padding);
    opacity: 1;
  }
}

@keyframes hideToast {
  from {
    bottom: var(--toast-bottom-padding);
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@-webkit-keyframes showToast {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: var(--toast-bottom-padding);
    opacity: 1;
  }
}

@-webkit-keyframes hideToast {
  from {
    bottom: var(--toast-bottom-padding);
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}
