/* src/components/common/NotificationInline/NotificationInline.module.css */
.NotificationInline_container {
  display: flex;
  align-items: center;
  min-height: var(--input-height);
  padding: 16px;
  border-radius: var(--border-radius);
  color: var(--color-danger);
  background-color: var(--bg-danger);
}
.NotificationInline_success {
  color: var(--color-success);
  background-color: var(--bg-success);
}

/* src/components/common/BackLink/BackLink.module.css */
.BackLink_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--input-height-lg);
  width: var(--input-height-lg);
  border-radius: var(--input-height-lg);
  box-shadow: var(--shadow-tooltip);
  color: var(--color-white);
  text-decoration: none;
  background-color: var(--bg-action);
}
.BackLink_icon {
  width: 32px;
  height: 32px;
}

/* src/components/common/Button/Button.module.css */
.Button_reset {
  appearance: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
  border: none;
}
.Button_base {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--input-height);
  padding-left: 16px;
  padding-right: 16px;
  font-size: var(--input-font-size);
  text-decoration: none;
  border-radius: var(--border-radius);
  border-width: var(--border-width);
  border-style: solid;
  border-color: transparent;
  line-height: 1;
  font-weight: var(--font-weight-semibold);
  transition: ease-in all 0.1s;
  cursor: pointer;
}
.Button_default {
  color: var(--color-white);
  border-color: var(--bg-action);
  background-color: var(--bg-action);
}
.Button_base:disabled {
  border-color: var(--color-border);
  color: var(--color-text-muted);
  background-color: var(--bg-gray);
  cursor: not-allowed;
}
.Button_transparent {
  color: var(--color-action);
  border-color: transparent;
  background-color: transparent;
}
.Button_white {
  color: var(--color-text);
  border-color: var(--bg-white);
  background-color: var(--bg-white);
}
.Button_alt {
  color: var(--color-action);
  border-color: var(--color-action);
  border-width: 3px;
  background-color: transparent;
}
.Button_fill {
  display: flex;
  width: 100%;
}
.Button_large {
  height: var(--input-height-lg);
  border-radius: var(--border-radius-lg);
}
.Button_small {
  padding-left: 8px;
  padding-right: 8px;
  font-size: var(--font-size-sm);
  height: var(--input-height-sm);
}
.Button_round {
  border-radius: var(--input-height-lg);
}
.Button_onlyIcon {
  padding: 0;
  width: var(--input-height);
}
.Button_large.Button_onlyIcon {
  width: var(--input-height-lg);
}
.Button_hasIcon .Button_icon {
  width: 16px;
  height: 16px;
}
.Button_large.Button_hasIcon .Button_icon {
  width: 20px;
  height: 20px;
}
.Button_onlyIcon .Button_icon {
  width: 20px;
  height: 20px;
}
.Button_large.Button_onlyIcon .Button_icon {
  width: 32px;
  height: 32px;
}
.Button_loadingText {
  margin-left: 8px;
}

/* src/components/common/Text/Text.module.css */
.Text_sm {
  font-size: var(--font-size-sm);
}
.Text_base {
  font-size: var(--font-size-base);
}
.Text_lg {
  font-size: var(--font-size-lg);
}
.Text_normal {
  font-weight: var(--font-weight-normal);
}
.Text_semibold {
  font-weight: var(--font-weight-semibold);
}
.Text_bold {
  font-weight: var(--font-weight-bold);
}
.Text_muted {
  color: var(--color-text-muted);
}

/* src/components/common/Heading/Heading.module.css */
.Heading_heading {
  margin: 0;
  line-height: var(--line-height-sm);
}
.Heading_xxl {
  font-size: var(--font-size-xxl);
}
.Heading_xl {
  font-size: var(--font-size-xl);
}
.Heading_lg {
  font-size: var(--font-size-lg);
}
.Heading_base {
  font-size: var(--font-size-base);
}

/* src/components/common/TextField/TextField.module.css */
.TextField_container {
  text-align: left;
}
.TextField_label {
  display: flex;
  margin-bottom: 2px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}
.TextField_input {
  width: 100%;
  height: var(--input-height);
  padding: 0 8px;
  border: var(--border-width-thick) solid var(--border-color);
  border-radius: var(--border-radius);
}
.TextField_input:disabled {
  background-color: var(--bg-white);
  border-color: var(--bg-white);
}
.TextField_large {
  height: var(--input-height-lg);
}
.TextField_textarea {
  height: auto;
  min-height: var(--input-height);
  max-height: calc(var(--input-height) * 10);
  padding: 8px;
  margin-bottom: calc(var(--border-radius) / 2 * -1);
  resize: vertical;
}
.TextField_textarea:disabled {
  resize: none;
}
.TextField_error {
  color: var(--color-danger);
  font-size: var(--font-size-sm);
}

/* src/components/common/CheckboxField/CheckboxField.module.css */
.CheckboxField_container {
  text-align: left;
}
.CheckboxField_labelContainer {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  display: flex-inline;
  gap: 3px;
  padding: 1px;
}
.CheckboxField_labelContainer input {
  margin-right: 3px;
}
.CheckboxField_labelContainer.CheckboxField_checked {
  background-color: var(--bg-action-light);
}
.CheckboxField_label {
  margin-bottom: 2px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}
.CheckboxField_error {
  color: var(--color-danger);
  font-size: var(--font-size-sm);
}

/* src/components/common/Page/Page.module.css */
.Page_outer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-grow: 1;
  z-index: 10;
  background-color: var(--bg-gray);
}
.Page_top {
  flex-shrink: 0;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  min-height: 25vh;
  background-color: var(--bg-white);
}
.Page_orange {
  color: var(--color-white);
  background-color: var(--bg-action);
}
.Page_green {
  color: var(--color-white);
  background-color: var(--bg-green);
}
.Page_bottom {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
}
.Page_span {
  background-color: var(--bg-white);
}
.Page_empty {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform: translateY(-20%);
  text-align: center;
}
.Page_footer {
  position: sticky;
  bottom: 0;
  flex-shrink: 0;
  width: 100%;
  padding: 4px 40px 16px;
  background-color: var(--bg-white);
}
.Page_footer::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  top: -50px;
  height: 50px;
  pointer-events: none;
  background:
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.75) 25%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0.25) 75%,
      rgba(255, 255, 255, 0) 100%);
}
.Page_footerInner {
  margin: 0 auto;
  width: 100%;
  max-width: var(--max-width-content);
}

/* src/components/common/TopBar/TopBar.module.css */
.TopBar_outer {
  position: sticky;
  top: 0;
  flex-shrink: 0;
  display: flex;
  padding: 0 8px;
  width: 100%;
  z-index: 5;
  height: var(--top-bar-height);
  box-shadow: var(--shadow-topbar);
  background-color: var(--bg-white);
}
.TopBar_absolute {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.TopBar_transparent {
  box-shadow: none;
  background-color: transparent;
}
.TopBar_inner {
  display: flex;
  width: 100%;
  margin: 0 auto;
  gap: 16px;
}
.TopBar_section {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  align-items: center;
}
.TopBar_left {
  justify-content: flex-start;
}
.TopBar_middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.TopBar_right {
  justify-content: flex-end;
}
.TopBar_title {
  white-space: nowrap;
  width: fit-content;
}

/* src/components/common/ListNav/ListNav.module.css */
.ListNav_container {
  margin-top: 32px;
}
.ListNav_title {
  display: flex;
  align-items: center;
  padding: 0 16px;
  margin-bottom: 8px;
}
.ListNav_nav {
  border-bottom: var(--border-width) solid var(--border-color);
  background-color: var(--bg-white);
}
.ListNav_item {
  appearance: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  min-height: var(--input-height-lg);
  width: 100%;
  text-align: left;
  border-top: var(--border-width) solid var(--border-color);
  font-size: var(--input-font-size);
  text-decoration: none;
  background-color: var(--bg-white);
}
.ListNav_itemIcon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-text);
}
.ListNav_danger .ListNav_itemIcon {
  color: var(--color-danger);
}
.ListNav_itemText {
  flex-grow: 1;
  color: var(--color-text);
}
.ListNav_danger .ListNav_itemText {
  color: var(--color-danger);
}
.ListNav_itemChevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-text);
}
.ListNav_danger .ListNav_itemChevron {
  color: var(--color-danger);
}
.ListNav_active .ListNav_itemChevron {
  color: var(--color-success);
}

/* src/components/common/RichText/RichText.module.css */
.RichText_container {
  width: 100%;
}
.RichText_container .embed-wrapper {
  margin: 16px -16px;
}
.RichText_container .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.RichText_container .embed-container iframe,
.RichText_container .embed-container object,
.RichText_container .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.RichText_container ul {
  padding-left: 2em;
  margin-top: 0;
  margin-bottom: 0;
  list-style: disc outside none;
}
.RichText_container ul li:not(:first-child) {
  margin-top: 0.5em;
}
.RichText_container ol {
  padding-left: 2em;
  margin-top: 0;
  margin-bottom: 0;
  list-style: decimal outside none;
}
.RichText_container ol li:not(:first-child) {
  margin-top: 0.5em;
}
.RichText_container h1 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}
.RichText_container strong,
.RichText_container b {
  font-weight: var(--font-weight-bold);
}
.RichText_container em {
  font-style: italic;
}
.RichText_container del {
  text-decoration: line-through;
}
.RichText_container blockquote {
  padding: 0.5rem 1rem 0.5rem 1rem;
  font-size: var(--font-size-lg);
  border-left: 4px solid var(--border-color);
}
.RichText_container a {
  color: var(--color-action);
}
.RichText_container figure {
  margin: 16px 0;
}
.RichText_container figcaption {
  display: none;
}

/* src/components/common/Checkbox/Checkbox.module.css */
.Checkbox_group {
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: inset 0 0 0 var(--border-width-thick) var(--bg-white);
  overflow: hidden;
  background-color: var(--bg-white);
}
.Checkbox_group::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: var(--border-radius);
  box-shadow: inset 0 0 0 var(--border-width-thick) var(--bg-white);
}
.Checkbox_labelContainer {
  display: flex;
  gap: 8px;
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-white);
}
.Checkbox_labelContainer:last-child {
  border-bottom: none;
}
.Checkbox_labelContainer.Checkbox_checked {
  background-color: var(--bg-action-light);
}
.Checkbox_indicator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--checkbox-radio-size);
  height: var(--checkbox-radio-size);
  border-radius: 4px;
  border: var(--border-width-thick) solid var(--border-color);
  background-color: var(--bg-white);
}
.Checkbox_checked .Checkbox_indicator {
  border-color: var(--bg-action);
  background-color: var(--bg-action);
}
.Checkbox_disabled .Checkbox_indicator {
  border-color: transparent;
}
.Checkbox_disabled.Checkbox_checked .Checkbox_indicator {
  border-color: var(--color-action);
}
.Checkbox_indicatorTick {
  display: inline-block;
  position: absolute;
  top: 2px;
  height: calc(var(--checkbox-radio-size) / 2);
  width: calc(var(--checkbox-radio-size) / 4);
  border-bottom: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: rotate(45deg) scale(0);
  transform-origin: center center;
  color: var(--color-white);
  transition: transform var(--transition-timing) var(--transition-duration);
}
.Checkbox_checked .Checkbox_indicator .Checkbox_indicatorTick {
  transform: rotate(45deg) scale(1);
}
.Checkbox_labelText {
  font-weight: var(--font-weight-semibold);
}
.Checkbox_disabled .Checkbox_labelText {
  color: var(--color-text-muted);
}
.Checkbox_disabled.Checkbox_checked .Checkbox_labelText {
  color: var(--color-action);
}

/* src/components/common/Radio/Radio.module.css */
.Radio_group {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius);
  box-shadow: inset 0 0 0 var(--border-width-thick) var(--bg-white);
  overflow: hidden;
  background-color: var(--bg-white);
}
.Radio_group::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: var(--border-radius);
  box-shadow: inset 0 0 0 var(--border-width-thick) var(--bg-white);
}
.Radio_labelContainer {
  display: flex;
  gap: 12px;
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-white);
}
.Radio_labelContainer:last-child {
  border-bottom: none;
}
.Radio_labelContainer.Radio_checked {
  background-color: var(--bg-danger);
}
.Radio_labelContainer.Radio_checked.Radio_correct {
  background-color: var(--bg-success);
}
.Radio_inputContainer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--checkbox-radio-size);
  height: var(--checkbox-radio-size);
  border-radius: var(--checkbox-radio-size);
  border: var(--border-width-thick) solid var(--border-color);
  background-color: var(--bg-white);
  transition: border-width var(--transition-timing) var(--transition-duration);
}
.Radio_inputContainer.Radio_checked {
  border-color: var(--color-danger);
}
.Radio_disabled .Radio_inputContainer {
  border-color: transparent;
}
.Radio_inputContainer.Radio_checked.Radio_correct {
  border-color: var(--color-success);
}
.Radio_inputIndicator {
  --indicator-size: calc(var(--checkbox-radio-size) - var(--border-width-thick) * 2 - 4px);
  display: inline-block;
  position: absolute;
  transform: scale(0);
  transform-origin: center center;
  height: var(--indicator-size);
  width: var(--indicator-size);
  border-radius: var(--indicator-size);
  transition: transform var(--transition-timing) var(--transition-duration);
}
.Radio_inputIndicator.Radio_checked {
  background-color: var(--color-danger);
  transform: scale(1);
}
.Radio_inputIndicator.Radio_checked.Radio_correct {
  background-color: var(--color-success);
}
.Radio_textWrapper {
}
.Radio_labelText {
  font-weight: var(--font-weight-semibold);
}
.Radio_disabled .Radio_labelText {
  color: var(--color-text-muted);
}
.Radio_disabled.Radio_checked .Radio_labelText {
  color: var(--color-success);
}
.Radio_feedback {
  font-size: var(--font-size-sm);
  color: var(--color-danger);
}
.Radio_feedback.Radio_correct {
  color: var(--color-success);
}

/* src/components/common/Loader/Loader.module.css */
.Loader_container {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: calc(var(--loader-size) / 10);
}
.Loader_container.Loader_inline {
  flex-direction: row;
  align-items: center;
}
.Loader_container.Loader_sizeSmall {
  gap: calc(var(--loader-size-sm) / 2);
}
.Loader_text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}
.Loader_colorWhite.Loader_text {
  color: var(--color-white);
}
.Loader_spinner {
  display: inline-block;
  position: relative;
  width: var(--loader-size);
  height: var(--loader-size);
}
.Loader_spinner div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: calc(var(--loader-size) * 0.8);
  height: calc(var(--loader-size) * 0.8);
  margin: calc(var(--loader-size) / 10);
  border: calc(var(--loader-size) / 10) solid var(--color-action);
  border-radius: 50%;
  animation: Loader_lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--color-action) transparent transparent transparent;
}
.Loader_spinner div:nth-child(1) {
  animation-delay: -0.45s;
}
.Loader_spinner div:nth-child(2) {
  animation-delay: -0.3s;
}
.Loader_spinner div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes Loader_lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.Loader_colorWhite .Loader_spinner div {
  border-top-color: var(--color-white);
}
.Loader_colorGray .Loader_spinner div {
  border-top-color: var(--color-text-muted);
}
.Loader_sizeSmall .Loader_spinner {
  width: var(--loader-size-sm);
  height: var(--loader-size-sm);
}
.Loader_sizeSmall .Loader_spinner div {
  width: calc(var(--loader-size-sm) * 0.8);
  height: calc(var(--loader-size-sm) * 0.8);
  margin: calc(var(--loader-size-sm) / 10);
  border-width: calc(var(--loader-size-sm) / 10);
}

/* src/components/common/TextLink/TextLink.module.css */
.TextLink_base {
  border-bottom: var(--border-width-thick) solid var(--color-action);
  color: var(--color-action);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  white-space: nowrap;
}

/* src/components/common/AuthenticationForm/AuthenticationForm.module.css */
.AuthenticationForm_subtitle {
  color: var(--color-white);
}
.AuthenticationForm_title {
  margin-bottom: 32px;
  color: var(--color-white);
}
.AuthenticationForm_form {
  padding: 40px 32px 24px;
  margin: 0 -32px -32px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background-color: var(--bg-white);
}
.AuthenticationForm_inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.AuthenticationForm_submit {
  margin-top: 32px;
}
.AuthenticationForm_error {
  margin-top: 16px;
}
.AuthenticationForm_footer {
  margin-top: 32px;
  text-align: center;
  min-height: 24px;
  color: var(--color-text-muted);
}
.AuthenticationForm_success {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.AuthenticationForm_successIcon {
  margin: 0 auto 16px;
}
.AuthenticationForm_successMessage {
  margin-bottom: 32px;
  text-align: center;
  color: #fff;
}

/* src/components/common/IconBadge/IconBadge.module.css */
.IconBadge_container {
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: var(--border-width-thick) solid var(--color-action);
  box-shadow:
    0 0 64px var(--bg-action-light),
    0 0 32px var(--bg-action-light),
    0 0 16px var(--bg-action-light);
  background-color: var(--bg-action-light);
}
.IconBadge_icon {
  width: 48px;
  fill: var(--color-action);
}
.IconBadge_success.IconBadge_container {
  border-color: var(--color-success);
  box-shadow:
    0 0 64px var(--bg-success),
    0 0 32px var(--bg-success),
    0 0 16px var(--bg-success);
  background-color: var(--bg-success);
}
.IconBadge_success .IconBadge_icon {
  fill: var(--color-success);
}
.IconBadge_gray.IconBadge_container {
  border-color: var(--color-text-muted);
  box-shadow:
    0 0 64px var(--bg-gray),
    0 0 32px var(--bg-gray),
    0 0 16px var(--bg-gray);
  background-color: var(--bg-gray);
}
.IconBadge_gray .IconBadge_icon {
  fill: var(--color-text-muted);
}
.IconBadge_danger.IconBadge_container {
  border-color: var(--color-danger);
  box-shadow:
    0 0 64px var(--bg-danger),
    0 0 32px var(--bg-danger),
    0 0 16px var(--bg-danger);
  background-color: var(--bg-danger);
}
.IconBadge_danger .IconBadge_icon {
  fill: var(--color-danger);
}

/* src/components/common/CenteredContent/CenteredContent.module.css */
.CenteredContent_outer {
  flex-grow: 1;
  display: grid;
  grid-template-rows: minmax(0, 5%) auto minmax(0, 30%);
  margin: 0 auto;
  width: 100%;
  max-width: var(--max-width-content);
  text-align: center;
}
.CenteredContent_inner {
  grid-row-start: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 32px 32px;
  gap: 32px;
}
.CenteredContent_title {
  margin-bottom: 4px;
}
.CenteredContent_icon {
  margin-left: auto;
  margin-right: auto;
}

/* src/components/common/CardList/CardList.module.css */
.CardList_list {
  display: block;
}
.CardList_listTop {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 0 20px;
  gap: 8px;
}
.CardList_listTop > h2 {
  text-wrap: balance;
  text-wrap: pretty;
}
.CardList_listDisabled .CardList_listTop {
  color: var(--color-text-muted);
}
.CardList_listSubtitle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.CardList_listSubtitleIcon {
  position: relative;
  top: -1px;
  width: 16px;
  max-height: 14px;
  fill: var(--color-text);
}
.CardList_listDisabled .CardList_listSubtitleIcon {
  fill: var(--color-text-muted);
}
.CardList_listCard {
  border-radius: var(--border-radius-lg);
  margin: 0 16px;
  overflow: hidden;
  background-color: var(--bg-white);
}
.CardList_item {
  appearance: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
  border: none;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  color: var(--color-text);
  text-align: left;
  font-size: var(--input-font-size);
  text-decoration: none;
  background-color: var(--bg-white);
}
.CardList_itemDisabled.CardList_item {
  cursor: default;
}
.CardList_timelineEvent {
  color: var(--color-success);
  background-color: var(--bg-success);
}
.CardList_item:first-child {
  padding-top: 2px;
}
.CardList_item:last-child {
  padding-bottom: 2px;
}
.CardList_itemImg {
  margin: 0 16px;
  width: 24px;
  flex-shrink: 0;
}
.CardList_itemDisabled .CardList_itemImg {
  opacity: 0.3;
}
.CardList_itemBullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  margin: 0 16px;
  flex-shrink: 0;
  border-radius: 13px;
  background-color: var(--color-success);
}
.CardList_item:first-child .CardList_itemBullet::after {
  position: absolute;
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  border-radius: 24px;
  border: 3px solid var(--color-success);
}
.CardList_itemBullet::before {
  position: absolute;
  content: "";
  display: block;
  width: 3px;
  flex-shrink: 0;
  top: 0;
  bottom: 0;
  background-color: var(--color-success);
}
.CardList_item:first-child .CardList_itemBullet::before {
  top: 43px;
}
.CardList_item:last-child .CardList_itemBullet::before {
  bottom: 50%;
}
.CardList_itemContent {
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 8px;
  padding: 8px 0;
  margin-right: 16px;
  min-height: 56px;
}
.CardList_itemContentInner {
  flex-grow: 1;
}
.CardList_itemContentInner > h3 {
  text-wrap: balance;
  text-wrap: pretty;
}
.CardList_itemDisabled .CardList_itemContentInner {
  color: var(--color-text-muted);
}
.CardList_item .CardList_itemContent {
  border-top: var(--border-width) solid var(--border-color);
}
.CardList_item:first-child .CardList_itemContent {
  border-top: 0;
}
.CardList_timelineEvent .CardList_itemContent {
  border-color: var(--bg-success);
}
.CardList_timelineEvent + .CardList_item .CardList_itemContent {
  border-width: 0;
}
.CardList_itemSubtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-wrap: balance;
  text-wrap: pretty;
}
.CardList_itemChevron {
  flex-shrink: 0;
  width: 20px;
  color: var(--color-text-muted);
}

/* src/components/common/ErrorBoundary/ErrorBoundary.module.css */
.ErrorBoundary_wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* src/features/AdventureList/AdventureList.module.css */
.AdventureList_wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-gray);
}
.AdventureList_content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: auto;
}
.AdventureList_inner {
  display: flex;
  flex-direction: column;
  padding: 16px;
  flex-grow: 1;
  margin: 0 auto;
  width: 100%;
  max-width: var(--max-width-content);
}
.AdventureList_activateCard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  border: var(--border-width-thick) dashed var(--border-color);
  color: var(--color-text-muted);
  background-color: rgba(255, 255, 255, 0.3);
}
.AdventureList_activateCardInner {
  text-align: center;
}
.AdventureList_activateCardTitle {
  flex-grow: 1;
  margin-bottom: 16px;
}
.AdventureList_list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
.AdventureList_adventureItem {
  display: block;
}
.AdventureList_empty {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-20%);
  text-align: center;
}
.AdventureList_link {
  white-space: nowrap;
}
.AdventureList_bold {
  font-weight: var(--font-weight-semibold);
}

/* src/features/AdventureList/AdventureCard/AdventureCard.module.css */
.AdventureCard_card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  color: var(--color-white);
  background-color: var(--bg-action);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
.AdventureCard_locked {
  box-shadow: none;
  filter: grayscale(1);
}
.AdventureCard_lockedBanner {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 4px 12px;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius-lg);
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
  background-color: var(--bg-white);
}
.AdventureCard_expiresSoon {
  box-shadow: none;
  filter: grayscale(50%);
}
.AdventureCard_expiresSoonBanner {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 4px 12px;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius-lg);
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
  background-color: var(--bg-white);
}
.AdventureCard_footer {
  position: relative;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 8px 4px 8px 16px;
  background-color: rgba(0, 0, 0, 0.2);
}
.AdventureCard_footer.AdventureCard_mask {
  position: absolute;
  overflow: hidden;
  z-index: 1;
  width: 100%;
}
.AdventureCard_footerContent {
  flex-grow: 1;
}
.AdventureCard_footerIcon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.AdventureCard_maskBlur {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  filter: blur(6px);
  transform: scale(1.05);
}
.AdventureCard_level {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 2px 8px;
  border-radius: 40px;
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-style: italic;
  white-space: nowrap;
  background-color: var(--bg-white);
}
.AdventureCard_levelNumber {
  font-weight: var(--font-weight-semibold);
}
.AdventureCard_points {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 6px;
  padding-right: 8px;
  gap: 2px;
  border-radius: 40px;
  background-color: var(--bg-white);
}
.AdventureCard_pointsIcon {
  position: relative;
  top: -1px;
  width: 14px;
  height: 14px;
}
.AdventureCard_pointsText {
  color: var(--color-text);
  font-style: italic;
  font-size: var(--font-size-sm);
  white-space: nowrap;
}

/* src/components/common/Modal/Modal.module.css */
.Modal_modalWrapper {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 100;
  overflow-y: auto;
}
.Modal_modalBox {
  position: relative;
  max-width: 450px;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  margin: 0 auto;
  text-align: center;
}
h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  width: 250px;
  text-align: left;
  padding: 2rem 0 0 1rem;
}
.Modal_doubleModalButton {
  display: flex;
  justify-content: space-evenly;
  margin: 25px auto 25px;
}
.Modal_modalButton {
  margin: 25px auto 25px;
}
.Modal_modalHeading {
  width: 100%;
  background-color: #ff7a56;
  border-radius: 4px;
  padding: 10px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: var(--font-weight-semibold);
  font-size: 20px;
}
.Modal_closeButton {
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  margin: 1rem;
}
.Modal_logo {
  margin: 25px auto 5px;
  width: calc(100% - 32px);
  max-width: 100px;
}
.Modal_modalContent {
  padding: 25px;
}
.Modal_disableModal {
  font-size: 12px;
  font-weight: 700;
  color: rgb(114, 113, 113);
}
.Modal_disableModal:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* src/features/RegisterWelcome/RegisterWelcome.module.css */
.RegisterWelcome_wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-gray);
}
.RegisterWelcome_container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
}
@media (min-height: 500px) {
  .RegisterWelcome_container {
    justify-content: center;
  }
}
.RegisterWelcome_inner {
  max-width: var(--max-width-content);
  width: 100%;
  padding: 16px 16px 32px;
  text-align: center;
}
.RegisterWelcome_icon {
  margin: 0 auto 32px;
}
.RegisterWelcome_title {
  margin-bottom: 32px;
  text-align: center;
  width: 100%;
  text-wrap: balance;
  text-wrap: pretty;
}
.RegisterWelcome_buttonContainer {
  margin-top: 32px;
  padding: 0 16px;
}

/* src/features/Adventure/BottomNavigation/BottomNavigation.module.css */
.BottomNavigation_outer {
  display: flex;
  height: var(--bottom-navigation-height);
  box-shadow: var(--shadow-bottombar);
  background-color: var(--bg-white);
}
.BottomNavigation_inner {
  display: flex;
  width: 100%;
  gap: 16px;
  max-width: var(--max-width-content);
  margin: 0 auto;
}
.BottomNavigation_navLink {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.BottomNavigation_navLink.BottomNavigation_active {
  color: var(--color-action);
}
.BottomNavigation_icon {
  height: 24px;
  width: 24px;
  margin-bottom: 4px;
}

/* ../../node_modules/mapbox-gl/dist/mapbox-gl.css */
.mapboxgl-map {
  -webkit-tap-highlight-color: rgb(0 0 0/0);
  font:
    12px/20px Helvetica Neue,
    Arial,
    Helvetica,
    sans-serif;
  overflow: hidden;
  position: relative;
}
.mapboxgl-canvas {
  left: 0;
  position: absolute;
  top: 0;
}
.mapboxgl-map:-webkit-full-screen {
  height: 100%;
  width: 100%;
}
.mapboxgl-canary {
  background-color: salmon;
}
.mapboxgl-canvas-container.mapboxgl-interactive,
.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass {
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.mapboxgl-canvas-container.mapboxgl-interactive.mapboxgl-track-pointer {
  cursor: pointer;
}
.mapboxgl-canvas-container.mapboxgl-interactive:active,
.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass:active {
  cursor: grabbing;
}
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate,
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate .mapboxgl-canvas {
  touch-action: pan-x pan-y;
}
.mapboxgl-canvas-container.mapboxgl-touch-drag-pan,
.mapboxgl-canvas-container.mapboxgl-touch-drag-pan .mapboxgl-canvas {
  touch-action: pinch-zoom;
}
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan,
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan .mapboxgl-canvas {
  touch-action: none;
}
.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right,
.mapboxgl-ctrl-top-left,
.mapboxgl-ctrl-top-right {
  pointer-events: none;
  position: absolute;
  z-index: 2;
}
.mapboxgl-ctrl-top-left {
  left: 0;
  top: 0;
}
.mapboxgl-ctrl-top-right {
  right: 0;
  top: 0;
}
.mapboxgl-ctrl-bottom-left {
  bottom: 0;
  left: 0;
}
.mapboxgl-ctrl-bottom-right {
  bottom: 0;
  right: 0;
}
.mapboxgl-ctrl {
  clear: both;
  pointer-events: auto;
  transform: translate(0);
}
.mapboxgl-ctrl-top-left .mapboxgl-ctrl {
  float: left;
  margin: 10px 0 0 10px;
}
.mapboxgl-ctrl-top-right .mapboxgl-ctrl {
  float: right;
  margin: 10px 10px 0 0;
}
.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl {
  float: left;
  margin: 0 0 10px 10px;
}
.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl {
  float: right;
  margin: 0 10px 10px 0;
}
.mapboxgl-ctrl-group {
  background: #fff;
  border-radius: 4px;
}
.mapboxgl-ctrl-group:not(:empty) {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .1);
}
@media (-ms-high-contrast:active) {
  .mapboxgl-ctrl-group:not(:empty) {
    box-shadow: 0 0 0 2px ButtonText;
  }
}
.mapboxgl-ctrl-group button {
  background-color: transparent;
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 29px;
  outline: none;
  overflow: hidden;
  padding: 0;
  width: 29px;
}
.mapboxgl-ctrl-group button + button {
  border-top: 1px solid #ddd;
}
.mapboxgl-ctrl button .mapboxgl-ctrl-icon {
  background-position: 50%;
  background-repeat: no-repeat;
  display: block;
  height: 100%;
  width: 100%;
}
@media (-ms-high-contrast:active) {
  .mapboxgl-ctrl-icon {
    background-color: transparent;
  }
  .mapboxgl-ctrl-group button + button {
    border-top: 1px solid ButtonText;
  }
}
.mapboxgl-ctrl-attrib-button:focus,
.mapboxgl-ctrl-group button:focus {
  box-shadow: 0 0 2px 2px #0096ff;
}
.mapboxgl-ctrl button:disabled {
  cursor: not-allowed;
}
.mapboxgl-ctrl button:disabled .mapboxgl-ctrl-icon {
  opacity: .25;
}
.mapboxgl-ctrl-group button:first-child {
  border-radius: 4px 4px 0 0;
}
.mapboxgl-ctrl-group button:last-child {
  border-radius: 0 0 4px 4px;
}
.mapboxgl-ctrl-group button:only-child {
  border-radius: inherit;
}
.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}
.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}
.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}
.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E");
}
@media (-ms-high-contrast:active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E");
  }
}
@media (-ms-high-contrast:black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E");
  }
}
.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E");
}
@media (-ms-high-contrast:active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E");
  }
}
@media (-ms-high-contrast:black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E");
  }
}
.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E%3C/svg%3E");
}
@media (-ms-high-contrast:active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23999'/%3E%3C/svg%3E");
  }
}
@media (-ms-high-contrast:black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E%3C/svg%3E");
  }
}
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
}
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-waiting .mapboxgl-ctrl-icon {
  animation: mapboxgl-spin 2s linear infinite;
}
@media (-ms-high-contrast:active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23999'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
}
@media (-ms-high-contrast:black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E");
  }
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E");
  }
}
@keyframes mapboxgl-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
a.mapboxgl-ctrl-logo {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='0.3' stroke='%23000' stroke-width='3'%3E%3Ccircle mask='url(/%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(/%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='0.9' fill='%23fff'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  cursor: pointer;
  display: block;
  height: 23px;
  margin: 0 0 -4px -4px;
  overflow: hidden;
  width: 88px;
}
a.mapboxgl-ctrl-logo.mapboxgl-compact {
  width: 23px;
}
@media (-ms-high-contrast:active) {
  a.mapboxgl-ctrl-logo {
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='1' stroke='%23000' stroke-width='3'%3E%3Ccircle mask='url(/%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(/%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='1' fill='%23fff'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E");
  }
}
@media (-ms-high-contrast:black-on-white) {
  a.mapboxgl-ctrl-logo {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='1' stroke='%23fff' stroke-width='3' fill='%23fff'%3E%3Ccircle mask='url(/%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(/%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='1' fill='%23000'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E");
  }
}
.mapboxgl-ctrl.mapboxgl-ctrl-attrib {
  background-color: hsla(0, 0%, 100%, .5);
  margin: 0;
  padding: 0 5px;
}
@media screen {
  .mapboxgl-ctrl-attrib.mapboxgl-compact {
    background-color: #fff;
    border-radius: 12px;
    margin: 10px;
    min-height: 20px;
    padding: 2px 24px 2px 0;
    position: relative;
  }
  .mapboxgl-ctrl-attrib.mapboxgl-compact-show {
    padding: 2px 28px 2px 8px;
    visibility: visible;
  }
  .mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show,
  .mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show {
    border-radius: 12px;
    padding: 2px 8px 2px 28px;
  }
  .mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner {
    display: none;
  }
  .mapboxgl-ctrl-attrib-button {
    background-color: hsla(0, 0%, 100%, .5);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
    border: 0;
    border-radius: 12px;
    box-sizing: border-box;
    cursor: pointer;
    display: none;
    height: 24px;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
  }
  .mapboxgl-ctrl-bottom-left .mapboxgl-ctrl-attrib-button,
  .mapboxgl-ctrl-top-left .mapboxgl-ctrl-attrib-button {
    left: 0;
  }
  .mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button,
  .mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner {
    display: block;
  }
  .mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-button {
    background-color: rgb(0 0 0/5%);
  }
  .mapboxgl-ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    bottom: 0;
    right: 0;
  }
  .mapboxgl-ctrl-top-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    right: 0;
    top: 0;
  }
  .mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    left: 0;
    top: 0;
  }
  .mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    bottom: 0;
    left: 0;
  }
}
@media screen and (-ms-high-contrast:active) {
  .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23fff'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
  }
}
@media screen and (-ms-high-contrast:black-on-white) {
  .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
  }
}
.mapboxgl-ctrl-attrib a {
  color: rgba(0, 0, 0, .75);
  text-decoration: none;
}
.mapboxgl-ctrl-attrib a:hover {
  color: inherit;
  text-decoration: underline;
}
.mapboxgl-ctrl-attrib .mapbox-improve-map {
  font-weight: 700;
  margin-left: 2px;
}
.mapboxgl-attrib-empty {
  display: none;
}
.mapboxgl-ctrl-scale {
  background-color: hsla(0, 0%, 100%, .75);
  border: 2px solid #333;
  border-top: #333;
  box-sizing: border-box;
  color: #333;
  font-size: 10px;
  padding: 0 5px;
  white-space: nowrap;
}
.mapboxgl-popup {
  display: flex;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  will-change: transform;
}
.mapboxgl-popup-anchor-top,
.mapboxgl-popup-anchor-top-left,
.mapboxgl-popup-anchor-top-right {
  flex-direction: column;
}
.mapboxgl-popup-anchor-bottom,
.mapboxgl-popup-anchor-bottom-left,
.mapboxgl-popup-anchor-bottom-right {
  flex-direction: column-reverse;
}
.mapboxgl-popup-anchor-left {
  flex-direction: row;
}
.mapboxgl-popup-anchor-right {
  flex-direction: row-reverse;
}
.mapboxgl-popup-tip {
  border: 10px solid transparent;
  height: 0;
  width: 0;
  z-index: 1;
}
.mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
  align-self: center;
  border-bottom-color: #fff;
  border-top: none;
}
.mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip {
  align-self: flex-start;
  border-bottom-color: #fff;
  border-left: none;
  border-top: none;
}
.mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip {
  align-self: flex-end;
  border-bottom-color: #fff;
  border-right: none;
  border-top: none;
}
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
  align-self: center;
  border-bottom: none;
  border-top-color: #fff;
}
.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip {
  align-self: flex-start;
  border-bottom: none;
  border-left: none;
  border-top-color: #fff;
}
.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip {
  align-self: flex-end;
  border-bottom: none;
  border-right: none;
  border-top-color: #fff;
}
.mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
  align-self: center;
  border-left: none;
  border-right-color: #fff;
}
.mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
  align-self: center;
  border-left-color: #fff;
  border-right: none;
}
.mapboxgl-popup-close-button {
  background-color: transparent;
  border: 0;
  border-radius: 0 3px 0 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}
.mapboxgl-popup-close-button:hover {
  background-color: rgb(0 0 0/5%);
}
.mapboxgl-popup-content {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
  padding: 10px 10px 15px;
  pointer-events: auto;
  position: relative;
}
.mapboxgl-popup-anchor-top-left .mapboxgl-popup-content {
  border-top-left-radius: 0;
}
.mapboxgl-popup-anchor-top-right .mapboxgl-popup-content {
  border-top-right-radius: 0;
}
.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-content {
  border-bottom-left-radius: 0;
}
.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-content {
  border-bottom-right-radius: 0;
}
.mapboxgl-popup-track-pointer {
  display: none;
}
.mapboxgl-popup-track-pointer * {
  pointer-events: none;
  user-select: none;
}
.mapboxgl-map:hover .mapboxgl-popup-track-pointer {
  display: flex;
}
.mapboxgl-map:active .mapboxgl-popup-track-pointer {
  display: none;
}
.mapboxgl-marker {
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: opacity .2s;
  will-change: transform;
}
.mapboxgl-user-location-dot,
.mapboxgl-user-location-dot:before {
  background-color: #1da1f2;
  border-radius: 50%;
  height: 15px;
  width: 15px;
}
.mapboxgl-user-location-dot:before {
  animation: mapboxgl-user-location-dot-pulse 2s infinite;
  content: "";
  position: absolute;
}
.mapboxgl-user-location-dot:after {
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, .35);
  box-sizing: border-box;
  content: "";
  height: 19px;
  left: -2px;
  position: absolute;
  top: -2px;
  width: 19px;
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading {
  height: 0;
  width: 0;
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after,
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
  border-bottom: 7.5px solid #4aa1eb;
  content: "";
  position: absolute;
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
  border-left: 7.5px solid transparent;
  transform: translateY(-28px) skewY(-20deg);
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after {
  border-right: 7.5px solid transparent;
  transform: translate(7.5px, -28px) skewY(20deg);
}
@keyframes mapboxgl-user-location-dot-pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(3);
  }
  to {
    opacity: 0;
    transform: scale(1);
  }
}
.mapboxgl-user-location-dot-stale {
  background-color: #aaa;
}
.mapboxgl-user-location-dot-stale:after {
  display: none;
}
.mapboxgl-user-location-accuracy-circle {
  background-color: #1da1f233;
  border-radius: 100%;
  height: 1px;
  width: 1px;
}
.mapboxgl-crosshair,
.mapboxgl-crosshair .mapboxgl-interactive,
.mapboxgl-crosshair .mapboxgl-interactive:active {
  cursor: crosshair;
}
.mapboxgl-boxzoom {
  background: #fff;
  border: 2px dotted #202020;
  height: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  top: 0;
  width: 0;
}
@media print {
  .mapbox-improve-map {
    display: none;
  }
}
.mapboxgl-scroll-zoom-blocker,
.mapboxgl-touch-pan-blocker {
  align-items: center;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  display: flex;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Helvetica,
    Arial,
    sans-serif;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 0;
  transition: opacity .75s ease-in-out;
  transition-delay: 1s;
  width: 100%;
}
.mapboxgl-scroll-zoom-blocker-show,
.mapboxgl-touch-pan-blocker-show {
  opacity: 1;
  transition: opacity .1s ease-in-out;
}
.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page,
.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page .mapboxgl-canvas {
  touch-action: pan-x pan-y;
}

/* src/components/map/Popup/Popup.module.css */
.Popup_container {
  display: flex;
  flex-direction: column;
  min-width: 240px;
}
.Popup_title {
  flex-grow: 1;
  gap: 8px;
  padding: 16px 16px 12px;
}
.Popup_footer {
  flex-shrink: 0;
  padding: 0 16px 12px;
}
.Popup_footer.Popup_locked {
  padding: 8px 24px 8px;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-align: center;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  background-color: var(--bg-gray);
}
.Popup_category {
  font-weight: var(--font-weight-bold);
  font-style: italic;
  font-size: var(--font-size-sm);
  color: var(--color-action);
}
.Popup_locked .Popup_category {
  color: var(--color-text-muted);
}
.mapboxgl-popup-content {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-tooltip);
  padding: 0;
}
.mapboxgl-popup-tip {
  border-width: 8px;
}
.mapboxgl-popup-close-button {
  display: none;
}

/* src/components/map/Map.module.css */
.Map_map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.Map_button {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 0;
  width: var(--input-height);
}
.Map_buttonIcon {
  position: relative;
  top: 1px;
  left: -1px;
  width: 16px;
  height: 16px;
  fill: var(--color-text);
}

/* src/features/Adventure/AdventureSpots/AdventureSpots.module.css */
.AdventureSpots_progress {
  height: 12px;
  margin-top: 8px;
  margin-bottom: calc(24px + 12px);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.2);
}
.AdventureSpots_progressInner {
  position: relative;
  text-align: right;
  height: 12px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.8);
}
.AdventureSpots_progressLabel {
  display: inline-block;
  position: relative;
  top: calc(12px + 8px);
  padding: 0 10px;
  border-radius: 16px;
  box-shadow: inset 2px 2px 16px rgba(0, 0, 0, 0.05);
  line-height: 24px;
  color: var(--color-white);
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.1);
}
.AdventureSpots_levels {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px 0;
}

/* src/features/Adventure/AdventureNotifications/AdventureNotifications.module.css */
.AdventureNotifications_cardList {
  padding: 16px 0;
}

/* ../../node_modules/@reach/accordion/styles.css */
:root {
  --reach-accordion: 1;
}
[data-reach-accordion-button][disabled] {
  cursor: not-allowed;
}

/* src/features/Adventure/AdventureInfo/AdventureInfo.module.css */
.AdventureInfo_top {
  padding: 32px 24px 32px;
  background-color: var(--bg-white);
}
.AdventureInfo_accordionItem {
  border-top: var(--border-width) solid var(--border-color);
}
.AdventureInfo_accordionButton {
  appearance: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
  border: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
  color: var(--color-text);
  background-color: var(--bg-white);
}
[data-reach-accordion-item][data-state=open] .AdventureInfo_accordionChevron {
  transform: rotate(180deg);
}
.AdventureInfo_accordionContent {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-top: var(--border-width) solid var(--border-color);
  background-color: var(--bg-white);
  width: 100%;
  max-width: 100%;
}
.AdventureInfo_list {
  display: grid;
  gap: 8px;
}
.AdventureInfo_listItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.AdventureInfo_listImg {
  width: 24px;
  position: relative;
  top: -4px;
}
.AdventureInfo_bulletListItem {
  position: relative;
  padding-left: 32px;
}
.AdventureInfo_bulletListItem::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: var(--color-text);
}
.AdventureInfo_image {
  border-radius: var(--border-radius-lg);
}
.AdventureInfo_richTextContent {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.AdventureInfo_richTextContent * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* src/features/Adventure/Spot/CheckboxTask/CheckboxTask.module.css */

/* src/features/Adventure/Spot/RadioTask/RadioTask.module.css */

/* src/features/Adventure/Spot/TextTask/TextTask.module.css */

/* src/features/Adventure/Spot/OpenTask/OpenTask.module.css */

/* src/features/Adventure/Spot/Reward/Reward.module.css */
.Reward_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 0;
  h1 {
    text-align: center !important;
  }
}
.Reward_icon {
  width: 88px;
  margin-bottom: 16px;
  fill: rgba(255, 255, 255, 1);
}
.Reward_content {
  padding: 16px;
  background-color: var(--bg-white);
}
.Reward_level {
  margin-top: 16px;
  padding: 0 24px;
  border-radius: 32px;
  line-height: 32px;
  color: var(--color-green);
  background-color: var(--bg-white);
}

/* src/features/Adventure/Spot/Spot.module.css */
.Spot_form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.Spot_top {
  padding: 16px 16px 0;
  background-color: var(--bg-white);
}
.Spot_main {
  flex-grow: 1;
}
.Spot_content {
  padding: 24px 16px 0;
  background-color: var(--bg-white);
}
.Spot_completionNotice {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  gap: 16px;
  color: var(--color-white);
  background-color: var(--bg-green);
}
.Spot_category {
  font-weight: var(--font-weight-bold);
  font-style: italic;
  font-size: var(--font-size-lg);
  color: var(--color-action);
}
.Spot_task {
  padding: 23px 16px;
}
.Spot_section {
  padding: 24px;
}
.Spot_editToolbar {
  position: relative;
  top: calc(var(--border-radius) / 2 * -1);
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 8px;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  border-top: var(--border-width) solid var(--border-color);
  background-color: var(--bg-white);
}

/* src/features/Adventure/AdventureIntro/AdventureIntro.module.css */
.AdventureIntro_content {
  padding: 24px;
  background-color: var(--bg-white);
}

/* src/features/Adventure/Adventure.module.css */
.Adventure_wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  width: 100%;
}
.Adventure_inner {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-grow: 1;
  overflow: hidden;
}
.Adventure_scrollContainer {
  flex-grow: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.Adventure_bottom {
  flex-shrink: 0;
  z-index: 20;
}

/* src/features/Start/Start.module.css */
.Start_container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: -webkit-fill-available;
  width: 100%;
  background: black;
}
.Start_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: -webkit-fill-available;
  width: 100%;
  z-index: 2;
}
.Start_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.7;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .Start_bgLeft {
    left: -30em;
  }
}
.Start_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  background:
    linear-gradient(
      -210deg,
      #100030,
      #320f42,
      #581750,
      #7e2259,
      #a3315e,
      #c6455f,
      #e55e5c,
      #ff7b57);
}
.Start_languageToggles {
  position: absolute;
  display: flex;
  gap: 8px;
}
.Start_button {
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 0;
  color: var(--color-white);
}
.Start_button.Start_active {
  color: var(--color-action);
}
.Start_button.Start_active:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-color: var(--bg-action);
}
.Start_content {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 32px 32px;
  max-width: var(--max-width-content);
  margin: 0 auto;
}

/* src/features/Adventure/VisitorAdventure.module.css */
.VisitorAdventure_content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  color: var(--color-white);
}
.VisitorAdventure_logo {
  max-width: 120px !important;
  margin: 0 auto 8px !important;
}
.VisitorAdventure_loaderContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-grow: 1;
}

/* src/features/Start/Welcome/Welcome.module.css */
.Welcome_content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  color: var(--color-white);
}
.Welcome_logo {
  margin: 0 auto 32px;
  width: calc(100% - 32px);
  max-width: 200px;
}
.Welcome_logoMapiosa {
  transform: translateX(15px);
}
.Welcome_textContent > * + * {
  margin-top: 16px;
}
.Welcome_buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* src/features/Settings/Settings.module.css */
.Settings_wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-gray);
}
.Settings_content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: auto;
  padding: 0 0 16px;
}

/* src/features/Activate/Activate.module.css */
.Activate_wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-gray);
}
.Activate_content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: auto;
}
.Activate_link {
  white-space: nowrap;
}

/* src/features/ChangePassword/ChangePassword.module.css */
.ChangePassword_wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-gray);
}
.ChangePassword_content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: auto;
}
.ChangePassword_inner {
  margin: 0 auto;
  width: 100%;
  max-width: var(--max-width-content);
  padding: 24px 16px;
}

/* src/features/Start/Login/Login.module.css */
.Login_form {
  display: grid;
  gap: 16px;
}
.Login_forgotPassword {
  text-align: right;
}

/* src/styles/reset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
ul {
  list-style: none;
}
button,
input,
select {
  margin: 0;
}
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
img,
video {
  height: auto;
  max-width: 100%;
}
iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}

/* src/styles/variables.css */
:root {
  --bottom-navigation-height: 60px;
  --top-bar-height: 60px;
  --max-width-content: 480px;
  --input-height-sm: 32px;
  --input-height: 40px;
  --input-height-lg: 48px;
  --input-font-size: 16px;
  --checkbox-radio-size: 24px;
  --loader-size: 80px;
  --loader-size-sm: 22px;
  --border-width: 1px;
  --border-width-thick: 2px;
  --border-radius: 6px;
  --border-radius-lg: 10px;
  --border-color: #E3E3E3;
  --shadow-card:
    0.2px 0.7px 0.7px -11px rgba(0, 0, 0, 0.02),
    0.5px 1.6px 1.6px -11px rgba(0, 0, 0, 0.028),
    1px 3px 3px -11px rgba(0, 0, 0, 0.035),
    1.8px 5.4px 5.4px -11px rgba(0, 0, 0, 0.042),
    3.3px 10px 10px -11px rgba(0, 0, 0, 0.05),
    8px 24px 24px -11px rgba(0, 0, 0, 0.07);
  --shadow-tooltip:
    0.1px 0.3px 0.7px rgba(0, 0, 0, 0.014),
    0.1px 0.8px 1.6px rgba(0, 0, 0, 0.02),
    0.3px 1.5px 3px rgba(0, 0, 0, 0.025),
    0.4px 2.7px 5.4px rgba(0, 0, 0, 0.03),
    0.8px 5px 10px rgba(0, 0, 0, 0.036),
    2px 12px 24px rgba(0, 0, 0, 0.05);
  --shadow-topbar: 0px 1px 0px rgba(17,17,26,0.05), 0px 0px 8px rgba(17,17,26,0.1);
  --shadow-bottombar: 0px -1px 0px rgba(17,17,26,0.05), 0px 0px 8px rgba(17,17,26,0.1);
  --shadow-bottombar-inset: 0px -1px 0px rgba(17,17,26,0.05) inset, 0px -8px 8px -8px rgba(17,17,26,0.1) inset;
  --font-stack:
    "IBM Plex Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;
  --line-height-base: 1.5;
  --line-height-sm: 1.2;
  --bg-gray: #EFF1F5;
  --bg-white: #ffffff;
  --bg-green: #2AB272;
  --bg-action: #FF7B57;
  --bg-action-light: rgba(236, 101, 82, 0.1);
  --bg-success: #D5FBE6;
  --bg-danger: #fbe3e4;
  --color-white: #ffffff;
  --color-text: black;
  --color-green: var(--bg-green);
  --color-text-muted: gray;
  --color-success: var(--bg-green);
  --color-danger: red;
  --color-action: var(--bg-action);
  --transition-duration: 80ms;
  --transition-timing: ease-in;
}

/* src/styles/font.css */
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/IBMPlexSans-Regular-K7RF34L7.digested.ttf) format("truetype");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/IBMPlexSans-Italic-TSACDBML.digested.ttf) format("truetype");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/IBMPlexSans-SemiBold-YQRZH4RG.digested.ttf) format("truetype");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/IBMPlexSans-SemiBoldItalic-GMRP2OAL.digested.ttf) format("truetype");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/IBMPlexSans-Bold-LTHH2R4M.digested.ttf) format("truetype");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/IBMPlexSans-BoldItalic-4MTMSODU.digested.ttf) format("truetype");
}

/* src/styles/global.css */
html,
body {
  height: 100%;
}
body {
  position: relative;
  font-weight: var(--font-weight-normal);
  font-family: var(--font-stack);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-gray);
}
b,
strong {
  font-weight: var(--font-weight-bold);
}
* {
  font: inherit;
}
#client-app-root {
  height: 100%;
}

/* src/styles/spacing.css */
.child-margins-x-2 > * + * {
  margin-left: 2px;
}
.child-margins-x-4 > * + * {
  margin-left: 4px;
}
.child-margins-x-8 > * + * {
  margin-left: 8px;
}
.child-margins-x-12 > * + * {
  margin-left: 12px;
}
.child-margins-x-16 > * + * {
  margin-left: 16px;
}
.child-margins-x-20 > * + * {
  margin-left: 20px;
}
.child-margins-x-24 > * + * {
  margin-left: 24px;
}
.child-margins-x-32 > * + * {
  margin-left: 32px;
}
.child-margins-x-48 > * + * {
  margin-left: 48px;
}
.child-margins-x-64 > * + * {
  margin-left: 64px;
}
.child-margins-x-128 > * + * {
  margin-left: 128px;
}
.child-margins-y-2 > * + * {
  margin-top: 2px;
}
.child-margins-y-4 > * + * {
  margin-top: 4px;
}
.child-margins-y-8 > * + * {
  margin-top: 8px;
}
.child-margins-y-12 > * + * {
  margin-top: 12px;
}
.child-margins-y-16 > * + * {
  margin-top: 16px;
}
.child-margins-y-20 > * + * {
  margin-top: 20px;
}
.child-margins-y-24 > * + * {
  margin-top: 24px;
}
.child-margins-y-32 > * + * {
  margin-top: 32px;
}
.child-margins-y-48 > * + * {
  margin-top: 48px;
}
.child-margins-y-64 > * + * {
  margin-top: 64px;
}
.child-margins-x-128 > * + * {
  margin-top: 128px;
}
.child-margins-x-hairline > * + * {
  margin-left: 1px;
}
.child-margins-y-hairline > * + * {
  margin-top: 1px;
}
.padding-hairline {
  padding: 1px;
}
.padding-2 {
  padding: 2px;
}
.padding-4 {
  padding: 4px;
}
.padding-8 {
  padding: 8px;
}
.padding-12 {
  padding: 12px;
}
.padding-16 {
  padding: 16px;
}
.padding-20 {
  padding: 20px;
}
.padding-24 {
  padding: 24px;
}
.padding-32 {
  padding: 32px;
}
.padding-48 {
  padding: 48px;
}
.padding-64 {
  padding: 64px;
}
.padding-128 {
  padding: 128px;
}
.padding-top {
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.padding-bottom {
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
}
.padding-left {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.padding-x {
  padding-top: 0;
  padding-bottom: 0;
}
.padding-y {
  padding-left: 0;
  padding-right: 0;
}
.padding-top-0 {
  padding-top: 0;
}
.padding-right-0 {
  padding-right: 0;
}
.padding-bottom-0 {
  padding-bottom: 0;
}
.padding-left-0 {
  padding-left: 0;
}
.padding-0 {
  padding: 0;
}
.margin-auto {
  margin: auto;
}
.margin-auto-x {
  margin-left: auto;
  margin-right: auto;
}
.margin-auto-y {
  margin-top: auto;
  margin-bottom: auto;
}
.margin-hairline {
  margin: 1px;
}
.margin-2 {
  margin: 2px;
}
.margin-4 {
  margin: 4px;
}
.margin-8 {
  margin: 8px;
}
.margin-12 {
  margin: 12px;
}
.margin-16 {
  margin: 16px;
}
.margin-20 {
  margin: 20px;
}
.margin-24 {
  margin: 24px;
}
.margin-32 {
  margin: 32px;
}
.margin-48 {
  margin: 48px;
}
.margin-64 {
  margin: 64px;
}
.margin-128 {
  margin: 128px;
}
.negative-margin-2 {
  margin: -2px;
}
.negative-margin-4 {
  margin: -4px;
}
.negative-margin-8 {
  margin: -8px;
}
.negative-margin-12 {
  margin: -12px;
}
.negative-margin-16 {
  margin: -16px;
}
.negative-margin-20 {
  margin: -20px;
}
.negative-margin-24 {
  margin: -24px;
}
.negative-margin-32 {
  margin: -32px;
}
.negative-margin-48 {
  margin: -48px;
}
.negative-margin-64 {
  margin: -64px;
}
.negative-margin-128 {
  margin: -128px;
}
.margin-top {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.margin-bottom {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
}
.margin-left {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
}
.margin-x {
  margin-top: 0;
  margin-bottom: 0;
}
.margin-y {
  margin-left: 0;
  margin-right: 0;
}
.margin-top-0 {
  margin-top: 0;
}
.margin-right-0 {
  margin-right: 0;
}
.margin-bottom-0 {
  margin-bottom: 0;
}
.margin-left-0 {
  margin-left: 0;
}
.margin-0 {
  margin: 0;
}
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
/*# sourceMappingURL=/assets/application.css.map */
