.puzzle div.selected {
  outline: 4px solid #F08061;
  outline-offset: -4px;
  box-shadow: 0 0 12px rgba(240, 128, 97, 0.6);
  z-index: 1;
}

#pwainstall {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #1B2A23;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#pwainstall:hover {
  transform: translateY(2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
#pwainstall:active {
  transform: translateY(0);
}
#pwainstall .icon {
  font-size: 18px;
  line-height: 1;
}
#pwainstall .label {
  white-space: nowrap;
}
#pwainstall.d-none {
  display: none;
}
.pcdevice {
  padding: 120px 10px;
  text-align: center;
  font-size: 20px;
}
.pdi .back .icon-back{
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  width: 44px;
  height: 44px;
  line-height: 52px;
  font-size: 32px;
  text-align: center;
  border-radius: 50%;
  background-color: #1B2A23;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.routelink .btn.btn-accent{
  font-size: 24px;
  display:block;
}
.route.completed .routelink .btn.btn-accent{
  background-color: #2a4b3b!important;
}



html {
  box-sizing: border-box;
  width: 100%;
  height: 100svh;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  font-optical-sizing: auto;
  user-select: none; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  margin: 0;
  padding-top: env(safe-area-inset-top);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  min-height: -webkit-fill-available;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: inherit;
  position: relative;
  touch-action: manipulation;
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  background-color: #1B2A23;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-image: url("/img/bg.webp"); }
  body.has_header main {
    height: calc(100% - 96px);
    margin-top: 96px !important; }

main {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 20px; }

header {
  width: 100%;
  padding: 0 20px;
  height: 96px;
  background-color: #1B2A23;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center; }
  header .logo {
    display: block;
    width: 124.47px;
    height: 44px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-image: url("/img/logo-negative.svg"); }
  header .nav {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    column-gap: 20px; }
    header .nav a.lia {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 3px solid #fff;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: cover;
      background-image: url("/img/lia/default-144.png"); }
    header .nav a.hamburger {
      width: 24px;
      height: 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-content: center;
      align-items: center;
      row-gap: 3px;
      cursor: pointer; }
      header .nav a.hamburger span {
        width: 14px;
        height: 2px;
        border-radius: 1px;
        background: #fff; }

body.header_has_shadow header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.75); }

#menu {
  width: calc(100% + 80px);
  height: 100%;
  padding: 0 calc(80px + 20px) 46px 20px;
  position: fixed;
  z-index: 999;
  background-color: #1B2A23;
  top: 0;
  left: 100%;
  transition: left 0.33s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap; }
  #menu .header {
    width: calc(100% - 20px * 2);
    height: 96px;
    flex: none;
    background-color: #1B2A23;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    position: fixed;
    z-index: 1; }
    #menu .header .logo {
      display: block;
      width: 124.47px;
      height: 44px;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: cover;
      background-image: url("/img/logo-negative.svg"); }
    #menu .header #menu-close {
      width: 24px;
      height: 24px;
      line-height: 28px;
      text-align: center;
      cursor: pointer; }
  #menu .menu-items {
    width: 100%;
    padding-top: 96px;
    overflow-y: auto; }
    #menu .menu-items a {
      display: flex;
      position: relative;
      align-items: center;
      align-content: center;
      width: 100%;
      height: 64px;
      color: #fff;
      text-decoration: none;
      font-weight: 400;
      font-size: 24px;
      letter-spacing: 0%; }
      #menu .menu-items a [class^="icon-"]:before, #menu .menu-items a [class*=" icon-"]:before {
        color: #7D8B8B;
        font-size: 150%; }
      #menu .menu-items a::after {
        content: '';
        width: calc(100% - 90px);
        height: 1px;
        background: #556864;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto; }
  #menu .floating-lang {
    bottom: 20px;
    top: auto;
    right: calc(80px + 20px); }
  #menu a.privacy_href {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    left: 20px;
    padding: 3px 7px;
    color: #fff; }

body.menu_open {
  pointer-events: none;
  overflow: hidden; }
  body.menu_open #menu {
    left: 0;
    pointer-events: all; }

.floating-lang {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  padding: 3px 7px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.85); }

.lang-selector {
  color: #444;
  font-size: 14px; }
  .lang-selector a.active {
    text-decoration: underline;
    font-weight: 700;
    color: #fff; }
  .lang-selector a {
    text-decoration: none;
    font-weight: 400;
    color: #444;
    padding: 0 3px; }

.btn {
  font-weight: 700;
  font-size: 32px;
  padding: 11px calc(20px*1.2) 8px calc(20px*1.2);
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  border-radius: 32px; }
  .btn.btn-fullwidth {
    width: 100%; }
  .btn.btn-accent {
    color: #fff;
    background-color: #F08061; }
  .btn.btn-green {
    color: #fff;
    background-color: #1B2A23; }
  .btn.btn-light {
    color: #1B2A23;
    background-color: #D8E3D5; }
  .btn.btn-inactive {
    color: #808080;
    background-color: #646464;
    cursor: not-allowed; }

button.btn {
  border: none;
  font-family: "Zain", sans-serif; }

form label span {
  font-size: 24px;
  display: inline-block;
  font-weight: 700; }
  form label span:first-letter {
    text-transform: uppercase; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */ }

input[type="number"] {
  -moz-appearance: textfield; }

.input_submit {
  position: relative;
  height: 48px;
  margin: 0 0 20px 0; }
  .input_submit label span {
    position: absolute;
    top: -32px; }
  .input_submit input[type="text"], .input_submit input[type="email"], .input_submit input[type="password"], .input_submit input[type="number"] {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; }
  .input_submit button[type="submit"] {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 1;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #556864; }
    .input_submit button[type="submit"]::before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      background-size: 75%;
      background-position: 50% 50%;
      background-image: url("/img/message.svg");
      opacity: 0.33;
      transform: scaleX(-1); }
    .input_submit button[type="submit"].active {
      background-color: #F08061;
      cursor: pointer; }
      .input_submit button[type="submit"].active::before {
        opacity: 1;
        transform: scaleX(1); }

input[type="text"], input[type="email"], input[type="password"], input[type="number"] {
  width: 100%;
  height: 48px;
  border-radius: 24px;
  font-size: 14px;
  background-color: #ededed;
  outline: none;
  color: #000;
  border: 2px solid transparent;
  padding: 20px; }
  input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder {
    color: #808080; }
  input[type="text"]:-moz-placeholder, input[type="email"]:-moz-placeholder, input[type="password"]:-moz-placeholder, input[type="number"]:-moz-placeholder {
    color: #808080; }
  input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="number"]::-moz-placeholder {
    color: #808080; }
  input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="password"]::placeholder, input[type="number"]::placeholder {
    color: #808080; }
  input[type="text"]::-ms-input-placeholder, input[type="email"]::-ms-input-placeholder, input[type="password"]::-ms-input-placeholder, input[type="number"]::-ms-input-placeholder {
    color: #808080; }
  input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus {
    border: 2px solid #F08061; }

.biglogo {
  width: 100%;
  height: 40%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 80%;
  background-image: url("/img/logo-negative.svg");
  position: relative;
  filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.75)); }
  .biglogo p {
    position: absolute;
    padding: 0;
    margin: 0 auto;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    font-weight: 700;
    font-size: 32px;
    line-height: 28px;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.75); }

body.onboarding main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px; }
body.onboarding .onboarding_lia {
  width: 100%;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
body.onboarding .lia_interactive {
  width: 100%;
  height: 60%;
  background-repeat: no-repeat;
  background-position: 50% calc(100% - 32px);
  background-size: calc(100% - 48px);
  background-image: url("/img/lia/default-512.png");
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: center;
  align-items: center; }
  body.onboarding .lia_interactive.default {
    background-image: url("/img/lia/default-512.png"); }
  body.onboarding .lia_interactive.smile1 {
    background-image: url("/img/lia/smile1-512.png"); }
  body.onboarding .lia_interactive.smile2 {
    background-image: url("/img/lia/smile2-512.png"); }
  body.onboarding .lia_interactive.smile3 {
    background-image: url("/img/lia/smile3-512.png"); }
body.onboarding.nickname .lia_interactive, body.onboarding.passcode .lia_interactive, body.onboarding.signin .lia_interactive {
  background-size: contain;
  background-position: 50% 50%; }
@media (max-height: 680px) {
  body.onboarding.nickname .balloon_lia .name, body.onboarding.passcode .balloon_lia .name, body.onboarding.signin .balloon_lia .name {
    font-size: 3.2vh;
    top: -2.4vh; }
  body.onboarding.nickname .balloon_lia p, body.onboarding.passcode .balloon_lia p, body.onboarding.signin .balloon_lia p {
    font-size: 2.6vh; }
  body.onboarding.nickname label span, body.onboarding.passcode label span, body.onboarding.signin label span {
    font-size: 3.2vh;
    top: -4.4vh; } }
body.onboarding.nickname .onboarding_lia {
  height: 50%; }
body.onboarding.nickname .lia_interactive {
  height: 50%; }
body.onboarding.passcode .onboarding_lia {
  height: 50%; }
body.onboarding.passcode .lia_interactive {
  height: 50%; }
body.onboarding.signin .onboarding_lia {
  height: auto; }
body.onboarding.signin label input[type="text"], body.onboarding.signin label input[type="number"] {
  margin: 0 0 calc(20px*2) 0; }

.balloon_lia {
  background-color: #fff;
  padding: 10px 10px 10px 80px;
  border-radius: 10px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
  margin: calc(20px*2) 0 0 0;
  min-height: 64px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .balloon_lia::before {
    content: '';
    position: absolute;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    top: -6px;
    left: -6px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 90%;
    background-image: url("/img/lia/default-144.png");
    background-color: #1B2A23;
    border: 6px solid #fff; }
  .balloon_lia .name {
    position: absolute;
    color: #1B2A23;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
    left: 80px;
    top: -22px; }
  .balloon_lia p, .balloon_lia ul, .balloon_lia ol {
    color: #1B2A23;
    margin: 0;
    font-size: 21px;
    line-height: 110%;
    letter-spacing: -0.4px; }
    .balloon_lia p b, .balloon_lia p strong, .balloon_lia ul b, .balloon_lia ul strong, .balloon_lia ol b, .balloon_lia ol strong {
      font-weight: 700;
      color: #F08061; }
    .balloon_lia p a, .balloon_lia ul a, .balloon_lia ol a {
      font-weight: 700;
      color: #F08061;
      text-decoration: underline; }
  .balloon_lia hr {
    border: none;
    width: calc(100% - 20px);
    height: 1px;
    background-color: #D8E3D5;
    margin: 20px 0; }
  .balloon_lia.error {
    background-color: #cc3333;
    color: #fff; }
    .balloon_lia.error::before {
      background-color: #720000;
      border: 6px solid #cc3333; }
    .balloon_lia.error .name {
      color: #fff;
      text-shadow: 2px 0 #cc3333, -2px 0 #cc3333, 0 2px #cc3333, 0 -2px #cc3333, 1px 1px #cc3333, -1px -1px #cc3333, 1px -1px #cc3333, -1px 1px #cc3333; }
    .balloon_lia.error p {
      color: #fff; }
      .balloon_lia.error p b, .balloon_lia.error p strong {
        color: #720000; }

.balloon_user {
  background-color: #1B2A23;
  padding: 10px 80px 10px 10px;
  border-radius: 10px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
  margin: calc(20px*2) 0 0 0;
  min-height: 64px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .balloon_user::before {
    content: inherit;
    position: absolute;
    width: 76px;
    height: 76px;
    line-height: 72px;
    border-radius: 50%;
    top: -6px;
    right: -6px;
    font-size: 48px;
    font-weight: 700;
    color: #1B2A23;
    text-align: center;
    background-color: #fff;
    border: 6px solid #1B2A23; }
  .balloon_user .name {
    position: absolute;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 2px 0 #1B2A23, -2px 0 #1B2A23, 0 2px #1B2A23, 0 -2px #1B2A23, 1px 1px #1B2A23, -1px -1px #1B2A23, 1px -1px #1B2A23, -1px 1px #1B2A23;
    right: 80px;
    top: -22px;
    text-align: right; }
  .balloon_user p {
    color: #fff;
    margin: 0;
    font-size: 21px;
    line-height: 110%;
    letter-spacing: -0.4px;
    text-align: right; }

.onboarding-href {
  color: #fff;
  font-size: 18px;
  display: block;
  text-align: center; }

.breadcrumbs {
  color: #fff;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0;
  font-size: 21px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
  position: relative; }
  .breadcrumbs a {
    color: #fff;
    text-decoration: none; }
    .breadcrumbs a i.icon.icon-back::before {
      margin: 4px 0 -4px 0; }
    .breadcrumbs a i.icon.icon-help::before {
      margin: 4px 0 -4px 0; }
    .breadcrumbs a.help {
      position: absolute;
      right: 0; }
  .breadcrumbs span::before {
    content: "\\";
    margin: 0 7px; }
  .breadcrumbs span.location {
    font-weight: bold; }

body.routes.location-select {
  background-color: #D8E3D5;
  background-image: none; }
  body.routes.location-select main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px; }
    body.routes.location-select main .location-selector {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      row-gap: 20px; }
      body.routes.location-select main .location-selector .location {
        width: 100%;
        aspect-ratio: 2/1;
        position: relative;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 50%;
        border-radius: 36px;
        cursor: pointer;
        overflow: hidden; }
        body.routes.location-select main .location-selector .location.location-1 {
          background-image: url("/img/locations/dossena.jpg"); }
        body.routes.location-select main .location-selector .location.location-2 {
          background-image: url("/img/locations/roncobello.jpg"); }
        body.routes.location-select main .location-selector .location span {
          display: block;
          width: 100%;
          font-size: 36px;
          font-weight: 700;
          color: #fff;
          position: absolute;
          z-index: 0;
          bottom: 0;
          left: 0;
          padding: calc(20px * 2) 20px 20px 20px;
          cursor: pointer; }
          body.routes.location-select main .location-selector .location span b {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
            bottom: -4px;
            filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.75)); }
          body.routes.location-select main .location-selector .location span::before {
            content: '';
            display: block;
            position: absolute;
            z-index: 0;
            width: 100%;
            height: 100%;
            background-color: none;
            opacity: 0.67;
            left: 0;
            bottom: 0; }
        body.routes.location-select main .location-selector .location.active {
          box-shadow: 0 0 0 8px #1B2A23; }
          body.routes.location-select main .location-selector .location.active span::before {
            background-color: #1B2A23; }

.pdi-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  max-width: 72px;
  min-height: 72px;
  max-height: 72px;
  background-color: #7D8B8B;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  border-radius: 50%;
  position: relative; }
  .pdi-icon::before {
    content: '';
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    top: -2px;
    left: -2px;
    position: absolute;
    border-style: dashed;
    border-width: 2px;
    border-color: #7D8B8B;
    border-radius: 50%; }
  .pdi-icon.completed::before {
    border-style: solid; }
  .pdi-icon.completed::after {
    content: '\e801';
    position: absolute;
    color: #fff;
    background-color: #1B2A23;
    width: 32px;
    height: 32px;
    font-size: 24px;
    line-height: 32px;
    border-radius: 50%;
    bottom: 0;
    left: 0;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none; }

body.routes.route-select, body.routes.pdi-select {
  background-image: none; }
  body.routes.route-select::before, body.routes.pdi-select::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    opacity: 0.25; }
  body.routes.route-select.location-1::before, body.routes.pdi-select.location-1::before {
    background-image: url("/img/locations/dossena-vertical.jpg"); }
  body.routes.route-select.location-2::before, body.routes.pdi-select.location-2::before {
    background-image: url("/img/locations/roncobello-vertical.jpg"); }
  body.routes.route-select main, body.routes.pdi-select main {
    overflow: auto; }
    body.routes.route-select main .balloon_lia, body.routes.pdi-select main .balloon_lia {
      margin: 0; }

.routes-group {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px; }
  .routes-group .route {
    background-color: #D8E3D5;
    border-radius: 10px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.75);
    padding: calc(20px / 2);
    position: relative; }
    .routes-group .route .done {
      display: none;
      opacity: 0;
      visibility: hidden;
      width: 0;
      height: 0;
      font-family: "Englebert", cursive;
      font-weight: 400;
      font-style: normal;
      text-transform: uppercase;
      font-size: 0; }
    .routes-group .route h2 {
      color: #1B2A23;
      font-size: 21px;
      margin: 0; }
    .routes-group .route .pdi-scroller {
      width: 100%;
      height: 84px;
      padding: 2px;
      white-space: nowrap;
      overflow-x: auto; }
      .routes-group .route .pdi-scroller .pdi-icon {
        margin: 0 20px 0 0;
        display: inline-block; }
    .routes-group .route .route-info {
      margin: 4px 0 0 0;
      border-top: 2px dashed #7D8B8B;
      padding: 4px 0 0 0;
      display: flex;
      justify-content: space-between; }
      .routes-group .route .route-info div {
        display: flex;
        flex-direction: column; }
        .routes-group .route .route-info div:nth-child(1) {
          text-align: left; }
        .routes-group .route .route-info div:nth-child(2) {
          text-align: center; }
        .routes-group .route .route-info div:nth-child(3) {
          text-align: right; }
        .routes-group .route .route-info div span:nth-child(1) {
          color: #556864; }
        .routes-group .route .route-info div span:nth-child(2) {
          color: #1B2A23;
          font-weight: 700; }
    .routes-group .route.completed {
      background-color: #1B2A23; }
      .routes-group .route.completed h2 {
        color: #fff; }
      .routes-group .route.completed::after {
        position: absolute; }
      .routes-group .route.completed .done {
        display: block;
        opacity: 1;
        visibility: visible;
        width: auto;
        height: auto;
        position: absolute;
        right: -4px;
        top: -4px;
        transform: rotate(4.44deg);
        font-size: 21px; }
      .routes-group .route.completed .route-info {
        border-top: 2px dashed #fff; }
        .routes-group .route.completed .route-info div span:nth-child(1) {
          color: #7D8B8B; }
        .routes-group .route.completed .route-info div span:nth-child(2) {
          color: #fff; }

.pdi-group {
  position: relative;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  row-gap: calc(20px * 2);
  background-color: rgba(27, 42, 35, 0.5);
  border-radius: 15px;
  padding: calc(20px / 2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px); }
  .pdi-group .pdi-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    column-gap: 20px;
    color: #1B2A23;
    background-color: #D8E3D5;
    border-radius: 36px 10px 10px 36px;
    font-size: 21px;
    line-height: 18px;
    font-weight: 700;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.12);
    text-decoration: none; }
    .pdi-group .pdi-item::before {
      content: '';
      position: absolute;
      left: -4px;
      top: -4px;
      height: calc(100% + 8px);
      aspect-ratio: 1 / 1;
      background-color: inherit;
      border-radius: 50%; }
    .pdi-group .pdi-item.completed {
      color: #fff;
      background-color: #1B2A23; }
      .pdi-group .pdi-item.completed .pdi-icon::before {
        border-style: solid; }
      .pdi-group .pdi-item.completed .pdi-icon::after {
        content: '\e801';
        position: absolute;
        color: #fff;
        background-color: #1B2A23;
        width: 32px;
        height: 32px;
        font-size: 24px;
        line-height: 32px;
        border-radius: 50%;
        bottom: 0;
        left: 0;
        font-family: "icons";
        font-style: normal;
        font-weight: normal;
        display: inline-block;
        text-decoration: inherit;
        text-align: center;
        font-variant: normal;
        text-transform: none; }
  .pdi-group::before {
    content: '';
    position: absolute;
    width: 1px;
    background: none;
    height: calc(100% - (20px * 2));
    border-left: 2px dashed #D8E3D5;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 0; }

body.routes.pdi {
  background-image: none;
  background-color: #D8E3D5;
  overflow-x: auto; }
  body.routes.pdi main {
    padding: 0; }
    body.routes.pdi main .breadcrumbs {
      position: absolute;
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; }
      body.routes.pdi main .breadcrumbs a.help {
        right: 20px; }
    body.routes.pdi main .pdi-image {
      width: 100%;
      aspect-ratio: 16 / 9;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: cover;
      position: relative; }
      body.routes.pdi main .pdi-image h1 {
        width: 100%;
        height: 72px;
        font-size: 24px;
        position: absolute;
        padding: 0 20px;
        bottom: 0;
        margin: 0;
        background-color: rgba(27, 42, 35, 0.75);
        display: flex;
        justify-content: space-between;
        align-items: center; }
        body.routes.pdi main .pdi-image h1 span {
          color: #fff; }
        body.routes.pdi main .pdi-image h1 a.icon {
          color: #fff;
          text-decoration: none;
          background-color: #F08061;
          width: 44px;
          height: 44px;
          font-size: 32px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          border-radius: 50%; }
    body.routes.pdi main p.description {
      padding: 20px;
      margin: 0;
      color: #1B2A23;
      font-size: 21px;
      line-height: 24px;
      height: calc(100% - 96px - ((100vw / 16)*9) - 84px);
      overflow-x: auto; }
      body.routes.pdi main p.description a {
        color: #1B2A23;
        font-weight: 700; }
    body.routes.pdi main .balloon_lia {
      margin: 20px 20px calc(20px / 2) 20px; }
    body.routes.pdi main .btn {
      display: block;
      width: calc(100% - calc(20px * 2));
      margin-left: 20px; }

.pdi_background {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  opacity: 0.33; }

body.routes.map {
  background-image: none;
  background-color: #D8E3D5; }
  body.routes.map .back {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    width: 44px;
    height: 44px;
    line-height: 52px;
    font-size: 32px;
    text-align: center;
    border-radius: 50%;
    background-color: #1B2A23;
    color: #fff;
    text-decoration: none;
    overflow: hidden; }
    body.routes.map .back .icon {
      display: block;
      height: 44px; }
  body.routes.map main {
    overflow: hidden;
    padding: 0; }
    body.routes.map main #map {
      width: 100%;
      height: 100%; }

body.map.imgmap {
  background-color: #836d24; }
  body.map.imgmap main #map {
    overflow: auto; }

#map .imgmap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative; }
  #map .imgmap::before, #map .imgmap::after {
    content: '';
    display: inline-block;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    pointer-events: none;
    width: inherit;
    height: inherit; }
  #map .imgmap::before {
    z-index: 1;
    opacity: 0.75; }
  #map .imgmap::after {
    z-index: 2; }

.dossena-tracciato-est {
  background-image: url("/img/imgmap/dossena_tracciato-est.jpg");
  width: calc(2998px / 2);
  height: calc(1770px / 2); }
  .dossena-tracciato-est::before {
    background-image: url("/img/imgmap/dossena_tracciato-est-path.png"); }
  .dossena-tracciato-est::after {
    background-image: url("/img/imgmap/dossena_tracciato-est-pdi.png"); }

.dossena-tracciato-miniere-antiche {
  background-image: url("/img/imgmap/dossena_tracciato-miniere-antiche.jpg");
  width: calc(3000px / 2);
  height: calc(3716px / 2); }
  .dossena-tracciato-miniere-antiche::before {
    background-image: url("/img/imgmap/dossena_tracciato-miniere-antiche-path.png"); }
  .dossena-tracciato-miniere-antiche::after {
    background-image: url("/img/imgmap/dossena_tracciato-miniere-antiche-pdi.png"); }

.dossena-tracciato-miniere {
  background-image: url("/img/imgmap/dossena_tracciato-miniere.jpg");
  width: calc(1671px / 2);
  height: calc(1496px / 2); }
  .dossena-tracciato-miniere::before {
    background-image: url("/img/imgmap/dossena_tracciato-miniere-path.png"); }
  .dossena-tracciato-miniere::after {
    background-image: url("/img/imgmap/dossena_tracciato-miniere-pdi.png"); }

.dossena-tracciato-ovest {
  background-image: url("/img/imgmap/dossena_tracciato-ovest.jpg");
  width: calc(3570px / 2);
  height: calc(1981px / 2); }
  .dossena-tracciato-ovest::before {
    background-image: url("/img/imgmap/dossena_tracciato-ovest-path.png"); }
  .dossena-tracciato-ovest::after {
    background-image: url("/img/imgmap/dossena_tracciato-ovest-pdi.png"); }

.roncobello-tracciato-baresi {
  background-image: url("/img/imgmap/roncobello-tracciato-baresi.jpg");
  width: calc(2090px / 2);
  height: calc(1610px / 2); }
  .roncobello-tracciato-baresi::before {
    background-image: url("/img/imgmap/roncobello-tracciato-baresi-path.png"); }
  .roncobello-tracciato-baresi::after {
    background-image: url("/img/imgmap/roncobello-tracciato-baresi-pdi.png"); }

.roncobello-tracciato-eroi {
  background-image: url("/img/imgmap/roncobello-tracciato-eroi.jpg");
  width: calc(2200px / 2);
  height: calc(3800px / 2); }
  .roncobello-tracciato-eroi::before {
    background-image: url("/img/imgmap/roncobello-tracciato-eroi-path.png"); }
  .roncobello-tracciato-eroi::after {
    background-image: url("/img/imgmap/roncobello-tracciato-eroi-pdi.png"); }

.roncobello-tracciato-fluviale {
  background-image: url("/img/imgmap/roncobello-tracciato-fluviale.jpg");
  width: calc(4188px / 2);
  height: calc(2500px / 2); }
  .roncobello-tracciato-fluviale::before {
    background-image: url("/img/imgmap/roncobello-tracciato-fluviale-path.png"); }
  .roncobello-tracciato-fluviale::after {
    background-image: url("/img/imgmap/roncobello-tracciato-fluviale-pdi.png"); }

.roncobello-tracciato-poiat {
  background-image: url("/img/imgmap/roncobello-tracciato-poiat.jpg");
  width: calc(4975px / 2);
  height: calc(1924px / 2); }
  .roncobello-tracciato-poiat::before {
    background-image: url("/img/imgmap/roncobello-tracciato-poiat-path.png"); }
  .roncobello-tracciato-poiat::after {
    background-image: url("/img/imgmap/roncobello-tracciato-poiat-pdi.png"); }

.roncobello-tracciato-romano {
  background-image: url("/img/imgmap/roncobello-tracciato-romano.jpg");
  width: calc(2600px / 2);
  height: calc(1924px / 2); }
  .roncobello-tracciato-romano::before {
    background-image: url("/img/imgmap/roncobello-tracciato-romano-path.png"); }
  .roncobello-tracciato-romano::after {
    background-image: url("/img/imgmap/roncobello-tracciato-romano-pdi.png"); }

.roncobello-tracciato-storico {
  background-image: url("/img/imgmap/roncobello-tracciato-storico.jpg");
  width: calc(2299px / 2);
  height: calc(2523px / 2); }
  .roncobello-tracciato-storico::before {
    background-image: url("/img/imgmap/roncobello-tracciato-storico-path.png"); }
  .roncobello-tracciato-storico::after {
    background-image: url("/img/imgmap/roncobello-tracciato-storico-pdi.png"); }

body.map-list {
  background-image: none; }
  body.map-list main .menu-items {
    width: 100%;
    padding-top: 96px;
    overflow-y: auto; }
    body.map-list main .menu-items a {
      display: flex;
      position: relative;
      align-items: center;
      align-content: center;
      width: 100%;
      height: 64px;
      color: #fff;
      text-decoration: none;
      font-weight: 400;
      font-size: 24px;
      letter-spacing: 0%; }
      body.map-list main .menu-items a [class^="icon-"]:before, body.map-list main .menu-items a [class*=" icon-"]:before {
        color: #7D8B8B;
        font-size: 150%; }
      body.map-list main .menu-items a::after {
        content: '';
        width: calc(100% - 90px);
        height: 1px;
        background: #556864;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto; }
  body.map-list main .menu-items {
    padding-top: 0;
    padding-bottom: calc(20px * 2); }
    body.map-list main .menu-items a {
      line-height: 21px; }

#gps-check-overlay {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1002;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.9); }
  #gps-check-overlay .gps-alert {
    font-size: 21px;
    color: #fff;
    text-align: center; }

body.gpscheck_open #gps-check-overlay {
  display: flex; }

.lds-ripple {
  color: #F08061;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  box-sizing: border-box; }
  .lds-ripple div {
    box-sizing: border-box;
    position: absolute;
    border: 6px solid currentColor;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite; }
    .lds-ripple div:nth-child(2) {
      animation-delay: -0.5s; }

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0; }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0; }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1; }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0; } }
body.chat header .nav .lia {
  display: none; }
body.chat main {
  padding: 0; }
body.chat .chat {
  width: 100%;
  height: 100%;
  overflow: hidden; }
  body.chat .chat .messages {
    height: calc(100% - (48px + (20px * 2)  ));
    padding: 0 20px;
    overflow-y: auto; }
  body.chat .chat .input {
    height: 48px;
    padding: 20px; }

body.challenge {
  background-image: none; }
  body.challenge main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px; }
    body.challenge main .quiz-group, body.challenge main .poll-group {
      display: flex;
      flex-direction: column;
      justify-content: center;
      row-gap: 20px; }
    body.challenge main .balloon_lia {
      margin: 0; }

.poll-group.results .result {
  width: 100%;
  height: 64px;
  line-height: 64px;
  background-color: rgba(0, 0, 0, 0.85);
  font-weight: 700;
  font-size: 32px;
  border-radius: 32px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden; }
  .poll-group.results .result span {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
    z-index: 1; }
  .poll-group.results .result .percbar {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1B2A23;
    height: 100%;
    z-index: 0; }
  .poll-group.results .result.active .percbar {
    background-color: #F08061; }

body.challenge.puzzle .puzzle {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #D8E3D5;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 4px solid #D8E3D5;
  border-radius: 10px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.75);
  pointer-events: none; }
  body.challenge.puzzle .puzzle.game {
    pointer-events: all; }
  body.challenge.puzzle .puzzle div {
    background-image: inherit;
    background-size: calc(100vw - (20px * 2) - (4px * 2)) calc(100vw - (20px * 2) - (4px * 2)); }
    body.challenge.puzzle .puzzle div:focus {
      box-shadow: inset 0 0 0 4px #F08061, 2px 2px 10px rgba(0, 0, 0, 0.75);
      transform: scale(125%); }
    body.challenge.puzzle .puzzle div:nth-of-type(1) {
      border-radius: 6px 0 0 0; }
    body.challenge.puzzle .puzzle div:nth-of-type(3) {
      border-radius: 0 6px 0 0; }
    body.challenge.puzzle .puzzle div:nth-of-type(7) {
      border-radius: 0 0 0 6px; }
    body.challenge.puzzle .puzzle div:nth-of-type(9) {
      border-radius: 0 0 6px 0; }
  body.challenge.puzzle .puzzle #card-01 {
    background-position: 0 0; }
  body.challenge.puzzle .puzzle #card-02 {
    background-position: 50% 0; }
  body.challenge.puzzle .puzzle #card-03 {
    background-position: 100% 0; }
  body.challenge.puzzle .puzzle #card-04 {
    background-position: 0 50%; }
  body.challenge.puzzle .puzzle #card-05 {
    background-position: 50% 50%; }
  body.challenge.puzzle .puzzle #card-06 {
    background-position: 100% 50%; }
  body.challenge.puzzle .puzzle #card-07 {
    background-position: 0 100%; }
  body.challenge.puzzle .puzzle #card-08 {
    background-position: 50% 100%; }
  body.challenge.puzzle .puzzle #card-09 {
    background-position: 100% 100%; }

body.challenge.success {
  background-image: url("/img/bg.webp"); }
  body.challenge.success main {
    position: absolute;
    z-index: 1;
    overflow: hidden; }
  body.challenge.success .balloon_lia {
    margin: 20px 0 0 0; }
  body.challenge.success .confetti {
    position: absolute;
    pointer-events: none;
    z-index: 0; }
  body.challenge.success .pdi-completed {
    display: flex;
    flex-direction: column;
    align-items: center; }
    body.challenge.success .pdi-completed .pdi-icon {
      transform: scale(2);
      box-shadow: 0 0 0 6px #fff; }
    body.challenge.success .pdi-completed span {
      display: block;
      font-size: 24px;
      font-weight: 700;
      color: #1B2A23;
      background-color: #FDFDFD;
      width: 100%;
      height: 72px;
      line-height: 72px;
      text-align: center;
      border-radius: 10px;
      margin: 32px 0 0 0; }

body.challenge.fail {
  background-image: url("/img/bg.webp"); }

body.badges {
  background-image: none;
  background-color: #D8E3D5; }
  body.badges main {
    overflow-y: auto; }
  body.badges .balloon_lia {
    margin: 20px 0 0 0; }
  body.badges .badges-group {
    display: flex;
    flex-direction: column;
    row-gap: calc(20px * 2);
    padding: calc(20px * 2) 0; }
    body.badges .badges-group .badge {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.12);
      position: relative;
      opacity:0.6;
      min-height: 68px; }
      body.badges .badges-group .badge .name {
        position: absolute;
        color: #1B2A23;
        font-size: 24px;
        font-weight: 700;
        text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
        left: 80px;
        top: -20px; }
      body.badges .badges-group .badge .trophy {
        position: absolute;
        width: 76px;
        height: 76px;
        border-radius: 50%;
        top: -6px;
        left: -6px;
        color: #fff;
        background-color: #556864;
        border: 6px solid #fff; }
        body.badges .badges-group .badge .trophy .icon {
          width: 100%;
          height: 100%;
          line-height: 76px;
          font-size: 48px;
          text-align: center; }
          body.badges .badges-group .badge .trophy .icon::before {
            margin: 0; }
      body.badges .badges-group .badge .description {
        color: #1B2A23;
        font-size: 18px;
        line-height: 16px;
        padding: calc(20px * 1.2) 0 calc(20px / 1.8) 80px; }
      body.badges .badges-group .badge .badge-done {
        display: none;
        font-family: "Englebert", cursive;
        font-weight: bold;
        text-transform: uppercase;
        position: absolute;
        font-size: 21px;
        top: -2px;
        right: -2px;
        transform: rotate(4.44deg); }
      body.badges .badges-group .badge.completed {
        background-color: #1B2A23;
        opacity: 1;}
        body.badges .badges-group .badge.completed .name {
          color: #fff;
          text-shadow: 2px 0 #1B2A23, -2px 0 #1B2A23, 0 2px #1B2A23, 0 -2px #1B2A23, 1px 1px #1B2A23, -1px -1px #1B2A23, 1px -1px #1B2A23, -1px 1px #1B2A23; }
        body.badges .badges-group .badge.completed .trophy {
          color: #1B2A23;
          background-color: #fff;
          border: 6px solid #1B2A23; }
        body.badges .badges-group .badge.completed .description {
          color: #fff; }
        body.badges .badges-group .badge.completed .badge-done {
          display: block; }

body.text {
  background-image: none;
  background-color: #D8E3D5; }
  body.text .content {
    color: #1B2A23;
    padding: 20px 0 calc(20px * 2) 0; }
    body.text .content a {
      color: #1B2A23;
      font-weight: 700; }
    body.text .content h1, body.text .content h2, body.text .content h3 {
      margin: 0; }
    body.text .content h1 {
      font-size: 32px; }
    body.text .content h2 {
      font-size: 24px; }
    body.text .content h3 {
      font-size: 21px; }

.position-absolute {
  position: absolute !important; }

.float-right {
  float: right !important; }

.float-left {
  float: left !important; }

.clearfix {
  clear: both !important; }

.d-none {
  display: none !important; }

.d-none-soft {
  opacity: 0 !important;
  pointer-events: none !important; }

.d-block {
  display: block !important; }

.d-inline {
  display: inline !important; }

.d-flex {
  display: flex !important; }

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

.position-relative {
  position: relative !important; }

.text-left {
  text-align: left !important; }

.text-center {
  text-align: center !important; }

.text-right {
  text-align: right !important; }

.color-fff {
  color: #fff !important; }

.pe-cursor {
  cursor: pointer !important; }

.overflow-auto {
  overflow: auto !important; }

.overflow-hidden {
  overflow: hidden !important; }

@font-face {
  font-family: 'icons';
  src: url("/fonts/icons.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-menu:before {
  content: '\e800'; }

.icon-check:before {
  content: '\e801'; }

.icon-newroute:before {
  content: '\e802'; }

.icon-route:before {
  content: '\e803'; }

.icon-message:before {
  content: '\e804'; }

.icon-qrcode:before {
  content: '\e805'; }

.icon-trophy:before {
  content: '\e806'; }

.icon-book:before {
  content: '\e807'; }

.icon-logo-leaf:before {
  content: '\e808'; }

.icon-arrow-down:before {
  content: '\e809'; }

.icon-arrow-up:before {
  content: '\e80a'; }

.icon-arrow-right:before {
  content: '\e80b'; }

.icon-arrow-left:before {
  content: '\e80c'; }

.icon-back:before {
  content: '\e80d'; }

.icon-x:before {
  content: '\e80e'; }

.icon-smartphone:before {
  content: '\f034'; }

.icon-balloon:before {
  content: '\f03d'; }

.icon-map:before {
  content: '\f278'; }

.icon-help:before {
  content: '\f29c'; }

#msg {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1001;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.9); }
  #msg div.buttons {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }

body.msg_open #msg {
  display: flex; }

#rotation-alert {
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: black;
  color: #FFFDF9;
  display: none; }
  @media (max-height: 450px) and (orientation: landscape) {
    #rotation-alert {
      display: flex; } }
  #rotation-alert .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px; }
    #rotation-alert .content .icon-smartphone {
      display: inline-block;
      animation-name: icon-mobile;
      animation-duration: 4s;
      animation-timing-function: linear;
      animation-iteration-count: infinite; }

@keyframes icon-mobile {
  0% {
    transform: rotate(90deg); }
  15% {
    transform: rotate(0); }
  85% {
    transform: rotate(0); }
  100% {
    transform: rotate(90deg); } }
/* SPACERS */
.space {
  display: block; }
  .space.h5 {
    height: 5px; }
  .space.h10 {
    height: 10px; }
  .space.h20 {
    height: 20px; }
  .space.h30 {
    height: 30px; }
  .space.h32 {
    height: 32px; }
  .space.h40 {
    height: 40px; }
  .space.h50 {
    height: 50px; }
  .space.h80 {
    height: 80px; }
  .space.w10 {
    weight: 10px; }
  .space.w20 {
    weight: 20px; }
  .space.nh5 {
    margin-top: -5px; }
  .space.nh10 {
    margin-top: -10px; }
  .space.nh20 {
    margin-top: -20px; }
  .space.nh30 {
    margin-top: -30px; }
  .space.nh40 {
    margin-top: -40px; }
  .space.nh50 {
    margin-top: -50px; }
  .space.nw10 {
    margin-left: -10px; }
  .space.nw20 {
    margin-left: -20px; }

/* SPACERS */
.padding_bottom_none {
  padding-bottom: 0 !important; }
