@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
body {
    margin: 0;
    line-height: normal;
    background-color: #101113!important;
    color: #ffffff;
    font-family: Inter;
  }

/* ===== BEST PRACTICES (BEST_PRACTICES_WEBAPP_MAP.md) ===== */

/* BP9: Body lock — previene bounce iOS e scroll accidentale (BEST_PRACTICES_WEBAPP_MAP.md §9) */
html, body {
  overscroll-behavior: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

/* BP9: Safe Area — previene sovrapposizione con notch/home bar (BEST_PRACTICES_WEBAPP_MAP.md §9) */
@supports (padding: max(0px)) {
  .bottombar-menu-ext {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* BP3: Pattern data-hidden — nasconde senza rimuovere dal rendering tree */
[data-hidden="true"] {
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* BP4: CSS Containment — isola la mappa dal resto della pagina */
#map-container, #map {
  contain: strict;
}

/* BP4+BP5: Containment + GPU layer per overlay/sheet/popup/modal */
.overlay, .sheet, .popup, .modal {
  contain: layout style paint;
  will-change: transform, opacity;
  transform: translateZ(0);
}

/* BP3: Transizione fluida per data-hidden (fade out prima di hidden) */
.overlay, .sheet, .popup {
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* ===== FINE BEST PRACTICES ===== */

.load-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
}
  
.blackBlock{
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.needed{
  color: red;
}
.mapboxgl-ctrl-logo, .mapboxgl-ctrl-attrib {
  display: none!important;
}

/* ---------- SCROLLBAR ---------- */
/* improvement: keep WebKit rules for Chrome-based, add Firefox-native properties */
*::-webkit-scrollbar{ /* ok for Chromium/WebKit. Firefox will ignore without warning */
  width:8px;
  background-color:#cccccc;
}
*::-webkit-scrollbar:horizontal{
  height:8px;
}
*::-webkit-scrollbar-track{
  border:1px #ffffff solid;
  border-radius:10px;
  -webkit-box-shadow:0 0 6px #c8c8c8 inset;
}
*::-webkit-scrollbar-thumb{
  background-color:#000000;
  border:1px solid #ffffff;
  border-radius:16px;
}
*::-webkit-scrollbar-thumb:hover{
  background-color:#000000;
  border:1px solid #ffffff;
}
*::-webkit-scrollbar-thumb:active{
  background-color:#000000;
  border:1px solid #ffffff;
}
*::-webkit-scrollbar-button{
  display:none!important;
}

/* improvement: enable Firefox scrollbar styling to remove “selector invalid” warnings */
html, body, #pagecontent, .frame-parent-search2, .frame-group-search, .aisearchresult {
  scrollbar-width: thin;           /* Firefox */
  scrollbar-color: #000000 #cccccc;/* thumb track */
}

/* ---------- FONT SMOOTHING ---------- */
/* improvement: avoid deprecated 'subpixel-antialiased' and gate WebKit-only property */
@supports (-webkit-font-smoothing: antialiased) {
  html { -webkit-font-smoothing: antialiased; } /* WebKit only, harmless on Firefox */
}

/* ---------- DATE/TIME PICKER: SCSS → VALID CSS ---------- */
/* problem: nested SCSS and @for loop were shipped as raw CSS, Firefox warns at '@for' */
/* improvement: un-nest selectors and replace the loop with explicit rules for first 20 items */
/* note: extend the list if you render more than 20 options */

.select-wrap { 
  position: relative; 
  height: 100%; 
  text-align: center; 
  overflow: hidden; 
  font-size: 20px; 
  color: #ddd; 
}
.select-wrap::before { 
  content: ""; 
  position: absolute; 
  z-index: 1; 
  display: block; 
  width: 100%; 
  height: 50%; 
  top: 0; 
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)); 
}
.select-wrap::after { 
  content: ""; 
  position: absolute; 
  z-index: 1; 
  display: block; 
  width: 100%; 
  height: 50%; 
  bottom: 0; 
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)); 
}

.select-wrap .select-options,
.select-wrap .select { 
  position: absolute; 
  top: 50%; 
  left: 0; 
  width: 100%; 
  height: 0; 
  transform-style: preserve-3d; 
  margin: 0 auto; 
  display: block; 
  transform: translateZ(-150px) rotateX(0deg); 
  color: #666; 
}

.select-wrap .select-options .select-option,
.select-wrap .select .select-option { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 50px; 
}

/* improvement: compiled positions for first 20 items (18deg step, Z=150px) */
.select-wrap .select-options .select-option:nth-child(1),
.select-wrap .select .select-option:nth-child(1)  { transform: rotateX(0deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(2),
.select-wrap .select .select-option:nth-child(2)  { transform: rotateX(-18deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(3),
.select-wrap .select .select-option:nth-child(3)  { transform: rotateX(-36deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(4),
.select-wrap .select .select-option:nth-child(4)  { transform: rotateX(-54deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(5),
.select-wrap .select .select-option:nth-child(5)  { transform: rotateX(-72deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(6),
.select-wrap .select .select-option:nth-child(6)  { transform: rotateX(-90deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(7),
.select-wrap .select .select-option:nth-child(7)  { transform: rotateX(-108deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(8),
.select-wrap .select .select-option:nth-child(8)  { transform: rotateX(-126deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(9),
.select-wrap .select .select-option:nth-child(9)  { transform: rotateX(-144deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(10),
.select-wrap .select .select-option:nth-child(10) { transform: rotateX(-162deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(11),
.select-wrap .select .select-option:nth-child(11) { transform: rotateX(-180deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(12),
.select-wrap .select .select-option:nth-child(12) { transform: rotateX(-198deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(13),
.select-wrap .select .select-option:nth-child(13) { transform: rotateX(-216deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(14),
.select-wrap .select .select-option:nth-child(14) { transform: rotateX(-234deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(15),
.select-wrap .select .select-option:nth-child(15) { transform: rotateX(-252deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(16),
.select-wrap .select .select-option:nth-child(16) { transform: rotateX(-270deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(17),
.select-wrap .select .select-option:nth-child(17) { transform: rotateX(-288deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(18),
.select-wrap .select .select-option:nth-child(18) { transform: rotateX(-306deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(19),
.select-wrap .select .select-option:nth-child(19) { transform: rotateX(-324deg) translateZ(150px); }
.select-wrap .select-options .select-option:nth-child(20),
.select-wrap .select .select-option:nth-child(20) { transform: rotateX(-342deg) translateZ(150px); }



/*fine scrollbar*/




:root {
  /* fonts */
  --font-avenir: Inter;
  --text-regular: Inter;
  /* font sizes */
  --text-regular-size: 10px;
  --text-regular1-size: 8px;
  --font-size-7xs: 6px;
  /* Colors */
  --black-main: #101113;
  --color-white: #fff;
  --gray-light-70: rgba(217, 217, 217, 0.7);
  --white-main: #f2f2f2;
  --white-transparent-50: rgba(242, 242, 242, 0.5);
  --purple-main: #5025cb;
  /* Gaps */
  --gap-11xs: 2px;
  --gap-0: 0px;
  /* Paddings */
  --padding-9xs: 4px;
  --padding-10xs-4: 2.4px;
  --padding-8xs-8: 4.8px;
  /* Border radiuses */
  --br-xl: 20px;
  --br-xs: 12px;
  --br-10xs-4: 2.4px;
}
   
#pagecontent{
  width: 100%;
  height: 100%;
  /*border:1px solid red;*/
  background-color: #000000;
  display: block;
  /*position: absolute;*/
  position: fixed;
  top:0;
  left:0;
  z-index: var(--z-loader);
  overflow: auto;
  overflow-x: hidden;

}
#pagecontent::-webkit-scrollbar {
  display: none;
}
    
  

  /*elements*/
.h2-gray{
  text-align: left;
  font-size: 16px;
  color: #f2f2f2;
  font-family: Inter;
}

.input-container{
  width: 100%;
  display: flex;
  flex-direction: column;
}

.input-big{
  border: none;
  outline: none;
  font-family: Inter;
  font-size: 16px;
  background-color: #222;
  align-self: stretch;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  height: 54px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 24px;
  box-sizing: border-box;
  color: #b7b7b7;
}
/*.button-confirm{
  cursor: pointer;
  border: 1.5px solid rgba(242, 242, 242, 0.2);
  padding: 0;
  background-color: #000;
  width: 280px;
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-sizing: border-box;
  height: 68px;
  margin: auto;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  font-family: "Inter-Bold", sans-serif;
  color: #f2f2f2;
  text-align: center;  
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
 improvement: added Safari support and safe fallback */

/* base style with opaque-ish fallback for browsers without backdrop support */
.button-confirm{
  /* existing props unchanged */
  cursor: pointer;
  border: 1.5px solid rgba(242, 242, 242, 0.2);
  padding: 0;
  background-color: rgba(0,0,0,0.85); /* improvement: fallback background for non-supporting browsers */
  width: 280px;
  border-radius: 20px;
  box-sizing: border-box;
  height: 68px;
  margin: auto;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  font-family: "Inter-Bold", sans-serif;
  color: #f2f2f2;
  text-align: center;  
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

/* apply blur only if supported; includes Safari via -webkit-backdrop-filter */
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)){
  .button-confirm{
    background-color: rgba(0,0,0,0.35); /* improvement: lighter when blur is active */
    -webkit-backdrop-filter: blur(20px); /* improvement: Safari 9+ */
    backdrop-filter: blur(20px);         /* standard */
  }
}

/* improvement: optional iOS Safari rendering fix — avoids disappearing bg on some versions */
@supports (-webkit-touch-callout: none) {
  .button-confirm{
    background-clip: padding-box; /* helps with semi-transparent backgrounds + blur */
  }
}




/* textarea */ 
.frame-textarea{
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-textarea-title{
  color: #f2f2f2;
  text-align: left;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 16px;
  letter-spacing: -1px;
  font-weight: 600;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.frame-textarea-container{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-textarea-box{
  background: #222222;
  border-radius: 16px;
  padding: 16px 24px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 144px;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #b7b7b7;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  font-weight: 300;
  border: none;
  outline: none;
}
.frame-textarea-under{
  color: #b7b7b7;
  text-align: right;
  font-family: "Inter-Regular", sans-serif;
  font-size: 8px;
  line-height: 12px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/*checkbox*/
.checkbox-title{
  /*width: 100%;*/
  display: flex;
  align-items: center;
  height: 100%;
  color: #b7b7b7;
  text-align: left;
  font-family: "Inter-Regular", sans-serif;

}
.acceptance-widget {
  align-self: stretch;
  border-radius: 20px;
  background-color: #222;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  font-size: 14px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
  

.circleswitch{
  position:relative; 
  display:block; 
  width:60px; 
  height: 33px;
}

.sliderx {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #303031;
  -webkit-transition: .4s;
  transition: .4s;
}

.sliderx:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .sliderx {
  background-color: #2196F3;
}

input:focus + .sliderx {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .sliderx:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.sliderx.round {
  border-radius: 34px;
}

.sliderx.round:before {
  border-radius: 50%;
}  


/*
.button {
    cursor: pointer;
    border: none;
    padding: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    gap: 10px;
}

.input {
    border: 1.5px solid rgba(242, 242, 242, 0.2);
    outline: none;
    font-family: Inter;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 312px;
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    height: 57px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 24px;
    color: rgba(211, 231, 255, 0.48);
    }*/
/*header*/
#menuIcon {
  position: relative;
}

.profile-wrapper {
  transform: scale(2); /* ← Aumenta la dimensione di tutto */
  transform-origin: top; /* Per farlo crescere verso l'interno */
}

.menu-icon {
  width: 36px;
  height: 36px;
}
/*profile icon*/
.circular-progress {
  --size: 250px;
  --half-size: calc(var(--size) / 2);
  --stroke-width: 15px;
  --radius: calc((var(--size) - var(--stroke-width)) / 2);
  --circumference: calc(var(--radius) * 3.1416 * 2);
}

.circular-progress circle {
  cx: var(--half-size);
  cy: var(--half-size);
  r: var(--radius);
  stroke-width: var(--stroke-width);
  fill: none;
  stroke-linecap: round;
}

.circular-progress circle.bg{
    /*background: rgba(255, 255, 255, 0.4);*/
    stroke: rgba(255, 255, 255, 0.4);
}

.circular-progress circle.fg {
  stroke: #ffffff;
  stroke-dasharray: var(--circumference);
  stroke-dashoffset: calc(var(--circumference) - (var(--progress) * var(--circumference)) / 100);
  transition: stroke-dashoffset 1s ease;
  transform: rotate(-90deg);
  transform-origin: var(--half-size) var(--half-size);
}

.imgcontainer{
  display:inline-flex;
  border-radius:50%;
  /*background-color:#000;	*/
  align-items: center;
  justify-content: center;	
  position: relative;
}
.imginner{
  width:28px;
  height:28px;
  border-radius:50%;
  align-self: center;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-repeat: no-repeat;
  background-position: center; /* Adjust this line */
  /*background-size: 100% 100%;  or 'contain' to maintain aspect ratio */
  background-size: cover;
}
/*circular MOMENT */
.circular-moment, .chat-circular-moment {
  --size: 250px;
  --half-size: calc(var(--size) / 2);
  --stroke-width: 23px;
  --radius: calc((var(--size) - var(--stroke-width)) / 2);
  --circumference: calc(var(--radius) * pi * 2);
  --dash: calc((var(--bar) * var(--circumference)) / 100);
  /*animation: checkin-animation 5s linear 0s 1 forwards;*/
}

.circular-moment circle, .chat-circular-moment circle {
  cx: var(--half-size);
  cy: var(--half-size);
  r: var(--radius);
  stroke-width: var(--stroke-width);
  fill: none;
  stroke-linecap: round;
}

.circular-moment circle.bg, .chat-circular-moment circle.bg{
  stroke: #222;
}

.circular-moment circle.fg, .chat-circular-moment circle.fg{
  transform: rotate(-90deg);
  transform-origin: var(--half-size) var(--half-size);
  stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
  transition: stroke-dasharray 0.3s linear 0s;
 /* stroke: #5394fd;*/
  stroke: url(#gradient); /* Utilizzo del gradiente definito */
}

@property --bar {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

/*@keyframes checkin-animation {
  from {
    --bar: 0;
  }
  to {
    --bar: 100;
  }
}*/

/**/
/*fine thumb profile*/
.xdest-logo-top-1 {
  width: 124.38px;
  position: relative;
  height: 27.63px;
  object-fit: cover;
}
.xdest-bar {
  width: 100%;
  position: relative;
  background-color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-sizing: border-box;
  gap: 0px 60px;
  z-index: var(--z-loader);
}


/*HEADER MAP*/
.xdest-logo-scontornato-1 {
  width: 20px;
  position: relative;
  height: 20px;
  object-fit: cover;
  
}

.div-header{
  position: relative;
  letter-spacing: -0.32px;
  font-weight: 600;
  width: 100%;
  text-align: end;
}

.box-stats {
  position: fixed;
  top: 4px;
  left: 4px;
  border-radius: 8px;
  background-color: rgba(16, 17, 19, 0.4);
  min-width: 60px;
  width: auto;
  height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 1px 8px;
  box-sizing: border-box;
  gap: 4px;
  text-align: center;
  font-size: 10px;
  color: #f2f2f2;
  font-family: Inter;
  z-index: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /*border: 1px solid rgba(0, 0, 0, 0); /* Forza il rendering su Safari */
  margin:1px; /* fix blur safari*/ 
  -webkit-user-select: none;
  -moz-user-select: none;   
  -ms-user-select: none;    
  user-select: none;

}
.italy {
  position: relative;
  letter-spacing: -0.32px;
  font-weight: 600;
}
.box-country {
  min-width: 200px;
  width: auto;
  max-width: 200px;
  position: fixed;
  top:5px;
  left: 50%;
  transform: translate(-50%, 0%);
  margin: 0 !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 8px;
  background-color: rgba(16, 17, 19, 0.4);
  height: auto;
  min-height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /*padding: 10px 8px;*/
  box-sizing: border-box;
  text-align: center;
  font-size: 10px;
  color: #f2f2f2;
  font-family: Inter;
  /*border:1px solid red;*/
  z-index:500;
  flex-wrap: wrap;
}

.searchmode {
  
  margin: 0 !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 8px;
  background-color: rgba(16, 17, 19, 0.4);
  height: auto;
  
  padding: 4px 8px;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  color: #f2f2f2;
  font-family: Inter;
  /*border:1px solid red;*/
 
  flex-wrap: wrap;
  width: 200px;
}
.searchmode:focus{
  outline: none;
}
#searchDiv{
  min-width: 200px;
  width: auto;
  max-width: 200px;
  position: fixed;
  left: 50%;
  top:22px;
  transform: translate(-50%, 0%);
  min-height: 32px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content:center;
  z-index:601;
  font-family: Inter;
}

#boxRisultati{
  background-color: #101113;
  border-radius: 0 0 20px 20px;
  width: 100%;
  margin: auto;
  transform: translate(-50%, 0%);
  left: 50%;
  position: relative;
}

.explorer-header {
  align-self: stretch;
  position: relative;
  line-height: 10px;
  font-weight: 600;
}

.span-header {
  color: #fff;
}

.on-header {
  color: #b7b7b7;
  width: auto;
}

.on-10000-container {
  align-self: stretch;
  position: relative;
  font-size: 6px;
  letter-spacing: -0.32px;
  line-height: 8px;
  font-weight: 500;
  color: #5abaff;
}

.explorer-parent {
  min-width: 50px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  margin-top: 54px;
  margin-right: 6px;
}

.button-circle-small-shop {
  width: 32px;
  position: fixed;
  top: 82px;
  left: 5px;
  border-radius: 20px;
  background-color: rgba(16, 17, 19, 0.4);
  border: 1.5px solid rgba(242, 242, 242, 0.2);
  box-sizing: border-box;
  height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  color: #fff;
  font-family: Inter;
  z-index:500;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  -webkit-user-select: none;
  -moz-user-select: none;   
  -ms-user-select: none;    
  user-select: none;
}

.circle-progress-child {
  width: 36px;
  position: absolute;
  margin: 0 !important;
  top: calc(50% - 17.9px);
  left: calc(50% - 18px);
  border-radius: 50%;
  background-color: rgba(242, 242, 242, 0.5);
  height: 36px;
  z-index: 0;
}

.circle-progress-item {
  width: 36px;
  position: absolute;
  margin: 0 !important;
  top: calc(50% - 17.9px);
  left: calc(50% - 18px);
  border-radius: 50%;
  background-color: #d9d9d9;
  height: 36px;
  z-index: 1;
}

.circle-progress {
  width: 36px;
  margin: 0 !important;
  position: absolute;
  top: calc(50% - 9.9px);
  left: calc(50% - 18px);
  height: 19.8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.ls-level-icon {
  width: 20px;
  margin: 0 !important;
  position: absolute;
  bottom: -5.8px;
  left: -6px;
  border-radius: 5px;
  height: 20px;
  object-fit: contain;
  z-index: 2;
  background-image: url("/images/common/ls-level.png") ;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
transform: scale(0.7); /* 70% della dimensione */
  transform-origin: top right; /* per evitare che si muova troppo */
}


.button-circle-small-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  top:66px;
  left:5px;
  gap: 0px 10px;
  z-index: 600;
}


.button-circle-small-mood {
  width: 32px;
  position: fixed;
  top:46px;
  left:5px;
  border-radius: 20px;
  background-color: rgba(16, 17, 19, 0.4);
  border: 1.5px solid rgba(242, 242, 242, 0.2);
  box-sizing: border-box;
  height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  color: #fff;
  font-family: Inter;
  z-index:600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  -webkit-user-select: none;
  -moz-user-select: none;   
  -ms-user-select: none;    
  user-select: none;
}
.moodprofile{
  border-radius: 50%;
  background-color: #222222;
  width: 28px;
  height: 28px;
  float: right;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: relative;
  top: -5px;

}

.player-box-map {
  position: fixed;
  top: 5px;
  right: 12px;
  min-width: 110px;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: flex-end;
  gap: 10px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-family: Inter;
  z-index: 599;
}


  .button-circle-small-infinite {
  width: 32px;
  position: fixed;
  top:46px;
  /*left:43px;*/
  left:40px;
  border-radius: 20px;
  background-color: rgba(16, 17, 19, 0.4);
  border: 1.5px solid rgba(242, 242, 242, 0.2);
  box-sizing: border-box;
  height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  color: #fff;
  font-family: Inter;
  z-index: 500;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  }
/*--menu OLD*/
.menu {
  position: fixed;
  top: 0;
  right: 0; /* Posizionato fuori dalla pagina */
  width: 90%;
  max-width:420px;
  height: 100%;
  background-color: #ffffff;
  padding: 20px;
  transform: translateX(100%); /* Inizialmente nascosto fuori dalla pagina */
  transition: transform 0.3s ease;
  border-left:solid 1px #000000;
  z-index: var(--z-system);
}
.menulabel{
  width: 25px;
  height: 21px;
  display: inline-block;
  background-repeat: no-repeat!important;
  background-position: center!important; 
  background-size: cover!important; 
  background-image: url('/images/hamb.svg');
}

.menu.open {
  transform: translateX(0); /* Mostra il menu lateralmente */
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
    display: flex;
    align-items: end;
    flex-direction: column;
   /* justify-content: space-around;*/
   padding:0px;  
   
}

.menu li {
  padding: 10px 0;
    margin: 0 10px;
	box-sizing: border-box;
	text-transform:uppercase;	
	color: rgb(0, 0, 0);
	font-family: "Inter";
	line-height: normal;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	list-style: none;	
	margin-bottom:10px;
	font-weight:600;  
	font-size: 32px; 	
}

.menu a {
  color: #000000;
  text-decoration: none;
  font-family: "Inter"; 
}

/*.menu-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1;
}*/

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
}

.close-icon {
  color: #000000;
  font-size: 30px;
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
}
/*--- fine menu*/

  /*fine header*/



  /**/
  /***loader***/
.loader {
  /*
  border: 16px solid #f3f3f3; 
  border-top: 16px solid #3d3d3d; RICY spin.png NON LO PRENDE OCCHIO
  border-radius: 50%;*/
  
  width: 200px;
  height: 200px;
  display: block;
  animation: spin 1.8s linear infinite;
  /*background-image: url('/images/share.svg');*/
  background-image: url('/images/spin.png');

  background-repeat: no-repeat;
  background-position: center; 
  background-size: cover;    

}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.load-container{

  z-index: var(--z-fullscreen);
  position: fixed;
  width: 100%;
  background-color: rgba(243, 243, 243, 0.2);
  align-items: center;
  justify-content: center;
  align-items: center; /* Centra verticalmente */
  justify-content: center; /* Centra orizzontalmente */
  height: 100%; /* Fai sì che il contenitore occupi tutta l'altezza */  
  display: flex;
}

.loading {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #6d6d6d;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  display: block;
  margin: auto;
}

/*.container-bigimage img:first-child {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  
}*/

.loader-box{
  width: 100%;
  height: 100%;
  min-height: 300px;
  box-sizing: border-box;
  background: url('/images/loading.gif') center no-repeat;
  background-color: rgba(0, 0, 0, 0.8);

}

.big-description-section{
 /* border: 1px solid red;*/
  width: 90%;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  box-sizing: border-box;
}
.big-description{
  /*border: 1px solid green;*/
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.big-description-eternity{
  display: flex;
  flex-direction: column;
 /* margin-bottom: 65px;
  margin-left: 25px;*/
}
.big-image-xd-logo{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 100px;
}

.spaced {
  content: ' ';
  margin-right: 20px;
}
.xclose{
  position: absolute;
  top:-26px;
  display: flex;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50%;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  z-index: 200;

}
.ximage{
  width: 15px;
  height: 15px;
}

/*icon selected*/
.circle-experince-secondary-lm2 {
  margin: 0 !important;
  position: absolute;
  /* top: calc(50% - 40px);
  left: calc(50% - 40px);*/
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px 10px;
  z-index: 1;
}
.input-experience-child-lm2 {
  width: 88px;
  position: relative;
  border-radius: 50%;
  background-color: #222;
  height: 88px;
  z-index: 0;
}
.circle-experince-secondary-child-lm2 {
  width: 83px;
  position: relative;
  border-radius: 50%;
  background-color: #101113;
  border: 1.5px solid rgba(242, 242, 242, 0.2);
  box-sizing: border-box;
  height: 83px;
  z-index: 0;
}
.surf-lm2 {
  width: 47px;
  position: absolute;
  margin: 0 !important;
  top: 53px;
  left: calc(50% - 23px);
  letter-spacing: -0.32px;
  line-height: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.div1-lm2 {
  width: 37.42px;
  position: absolute;
  margin: 0 !important;
  top: 16px;
  left: calc(50% - 19px);
  font-size: 30px;
  letter-spacing: -0.32px;
  color: #101113;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 27.72px;
  z-index: 2;
}
.icon-close-wrapper-lm2 {
  margin: 0 !important;
  position: absolute;
  top: -4px;
  left: 58px;
  border-radius: 100px;
  background-color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px;
  z-index: 3;
}
.icon-close-lm2 {
  width: 10px;
  position: relative;
  height: 10px;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

.p5Canvas{
  display: none;
}
/*friends search popup*/
.frame-parent-playerslist {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	padding: 0px 8px;
	box-sizing: border-box;
	gap: 24px;
	text-align: center;
	font-size: 8px;
	color: #f2f2f2;
	font-family: Inter;
}
.frame-group-players {
	flex: 1;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 8px;
}
.friend-icon-parent-players {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
}

.runningsearch{
  width: 20px;
  height: 20px;
}

/*.box-country:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 5px;
}*/

.box-country:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(4px,-50%);
  width: 20px; /* Imposta la larghezza desiderata per l'SVG */
  height: 20px; /* Imposta l'altezza desiderata per l'SVG */
  background-image: url("/images/toolbar/searchlens.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
}

.hide-loader:after {
  display: none;
}

.screenshot-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: var(--z-system);

  color: white;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  text-align: center;
}

.screenshot-popup {
  background: white;
  padding: 20px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  width: 300px;        /* dimensione fissa orizzontale */
  height: 140px;       /* dimensione fissa verticale */
  display: flex;
  flex-direction: column;
  justify-content: center; /* centra verticalmente */
  align-items: center;     /* centra orizzontalmente */
}

.screenshot-message {
  margin: 0; /* rimuovo margini extra */
  font-size: 18px;
  font-weight: 500;
  color: #101113;
  font-family: Inter, sans-serif;
  /* margine inferiore gestito da flexbox */
}

#spinner {
  margin-top: 16px;
  width: 40px;
  height: 40px;
  border: 5px solid rgba(16, 17, 19, 0.1); /* bordo molto leggero scuro, visibile su bianco */
  border-top-color: #3b82f6; /* blu acceso */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hide {
  display: none !important;
}


/*QUILL custom*/
.ql-editor::before {
  color: #a9a9a9!important; /* Sostituisci con il colore che preferisci */
 /* font-style: italic;  Opzionale, per aggiungere uno stile */
}
.ql-toolbar {
  background-color: #222222; /* Colore di sfondo della toolbar */
  border: 0!important;   /* Bordo della toolbar */
  color: #fff!important;
}

.ql-container {
  border: 1px solid #ccc;   /* Bordo dell'editor */
  border-top: none;         /* Rimuove il bordo tra toolbar e editor */
}
.ql-toolbar.ql-snow{
  /*padding: 4px; */
}


.ql-editor {
  min-height: 150px;        /* Altezza minima dell'editor */
  font-family: Inter; /* Font predefinito */
  font-size: 16px;          /* Dimensione del testo */
  width: 100%;
  height: 100%;
  color:#f2f2f2;
}
.ql-snow .ql-stroke{
  color: #f2f2f2!important;
}

/*covers*/
.frame-593 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 86px;
  height: 172px;
  position: relative;
  border-radius: 20px;
}
.button-circle-super-small-editpass {
  border-radius: 11px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: absolute;
  right: 2px;
  top: 2px;
  overflow: visible;
}
.button-circle-super-small-remove{
  width: 22px;
  margin: 0 !important;
  position: absolute;
  top: -8px;
  right: 8px;
  border-radius: 22px;
  background-color: #000;
  height: 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 2;
}


.feature-tag-playerslist {
    border-radius: 20px;
    border: 1.5px solid rgba(242, 242, 242, 0.2);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    text-align: center;
    font-size: 8px;
}
	.feature-tag-text-playerslist {
	position: relative;
	letter-spacing: -0.32px;
	font-weight: 500;
	cursor: pointer;
}
.popup-ricerca-utenti {
  max-width: 328px;
  width: calc(100% - 32px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background-color: #101113;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px;
  box-sizing: border-box;
  gap: 16px;
  max-height: 320px;
  text-align: left;
  font-size: 14px;
  color: #f2f2f2;
  font-family: Inter;
}
#searchUserContainer{
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  z-index: var(--z-fullscreen);
  background-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
.input-mediumblack-transparent-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.input-mediumblack-transparent-search {
  width: 100%;
  max-width: 240px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 32px;
  background-color: rgba(16, 17, 19, 0.4);
  border: 1.5px solid rgba(183, 183, 183, 0.4);
  box-sizing: border-box;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 8px;
}
.search-user {
  border: none;
  outline: none;
  font-weight: 500;
  font-family: Inter;
  font-size: 14px;
  background-color: transparent;
  width: 100%;
  flex: 1;
  min-width: 0;
  position: relative;
  letter-spacing: -0.32px;
  line-height: 16px;
  color: #b7b7b7;
  text-align: left;
  display: flex;
  align-items: center;
}

.icon-close-search {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 10px;
  padding: 4px;
  cursor: pointer;
  object-fit: contain;
}
.frame-parent-search2 {
  align-self: stretch;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 12px 0px;
  box-sizing: border-box;
  gap: 12px;
  max-height: 230px;
  overscroll-behavior: none;
  touch-action: pan-y;
}

.icon-profile-parent-search {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #5abaff;
}
.icon-profile-search {
  width: 40px;
  position: relative;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.explorer-name-search {
  position: relative;
  letter-spacing: -0.32px;
  line-height: 16px;
  font-weight: 600;
}

.explorer-nationality-search {
  position: relative;
  font-size: 8px;
  letter-spacing: -0.32px;
  line-height: 16px;
  color: #fff;
}

.explorer-name-parent-search {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.explorer-origin-search {
  position: relative;
  font-size: 8px;
  letter-spacing: -0.32px;
  line-height: 10px;
  color: #b7b7b7;
}

.frame-group-search {
  align-self: stretch;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.explorer-level-icon {
  width: 32px;
  position: relative;
  height: 20px;
}

.explorer-level-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.explorer-type-icon-search {
  width: 56px;
  position: relative;
  height: 20px;
}

.frame-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}

.explorer-origin1 {
  position: relative;
  font-size: 8px;
  letter-spacing: -0.32px;
  color: #b7b7b7;
}

.icon-profile-group {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.friends-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	gap: 8px;
}
.friend-icon1 {
	width: 40px;
	position: relative;
	height: 40px;
	object-fit: cover;
	z-index: 0;
	border-radius: 50%;
}
.you {
	align-self: stretch;
	position: relative;
	letter-spacing: -0.32px;
	font-weight: 600;
}
.button-circle-super-small-list {
	width: 22px;
	margin: 0 !important;
	position: absolute;
	top: -11px;
	left: 29px;
	border-radius: 22px;
	background-color: #000;
	height: 22px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.icon-close-qea {
    width: 10px;
    position: absolute;
    margin: 0 !important;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    height: 10px;
    z-index: 0;
}
  /*Data picker*/
  #datapopupbox{
    /*  display: flex;*/
      position: fixed;
      left: 0%;
      top: 0%;
      background-color: #00000080;
      width: 100%;
      height: 100%;
      z-index: var(--z-fullscreen);
      justify-content: center;
      align-items: center;
    }

    /*#datapopupbox *, 
    #datapopupbox::after, 
    #datapopupbox::before {
        box-sizing: border-box;
    }*/
    .G-picker-all *, 
    .G-picker-all *::after, 
    .G-picker-all *::before {
        box-sizing: border-box;
    }

    .G-picker-all *, 
    .G-picker-all *::after, 
    .G-picker-all *::before {
        box-sizing: border-box;
    }
    



    .select-wrap { 
      position: relative; 
      /* top: 200px;  */
      height: 100%; 
      /* perspective: 1200px; */
      text-align: center; 
      overflow: hidden; 
      font-size: 20px; 
      color: #ddd; 
      &:before, &:after { 
        position: absolute; 
        z-index: 1; 
        display: block; 
        content: ''; 
        width: 100%; 
        height: 50%; 
      } 
      &:before { 
        top: 0; 
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)); 
      } 
      &:after { 
        bottom: 0; 
        background-image: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)); 
      } 
      .select-options, .select { 
        position: absolute; 
        top: 50%; 
        left: 0; 
        width: 100%; 
        height: 0; 
        transform-style: preserve-3d; 
        margin: 0 auto; 
        display: block; 
        transform: translateZ(-150px) rotateX(0deg); 
        -webkit-font-smoothing: subpixel-antialiased; 
        color: #666; 
        .select-option { 
          position: absolute; 
          top: 0; 
          left: 0; 
          width: 100%; 
          height: 50px; 
          -webkit-font-smoothing: subpixel-antialiased; 
          @for $i from 1 through 100 { 
            &:nth-child(#{$i}) { 
              transform: rotateX(-18deg * ($i - 1)) translateZ(150px); 
            } 
          } 
        } 
      } 
    } 



    #year2 {
      .select-wrap {
        position: relative;
        height: 100%;
        text-align: center;
        overflow: hidden;
        font-size: 20px;
        color: #ddd;

        &::before,
        &::after {
          position: absolute;
          z-index: 1;
          display: block;
          content: '';
          width: 100%;
          height: 50%;
        }
        &::before {
          top: 0;
          background-image: linear-gradient(to bottom, rgba(255,255,255,.5), rgba(255,255,255,0));
        }
        &::after {
          bottom: 0;
          background-image: linear-gradient(to top, rgba(255,255,255,.5), rgba(255,255,255,0));
        }

        .select-options,
        .select {
          position: absolute;
          top: 50%;
          left: -20px;
          width: 100%;
          height: 0;
          transform-style: preserve-3d;
          margin: 0 auto;
          display: block;
          transform: translateZ(-150px) rotateX(0deg);
          -webkit-font-smoothing: subpixel-antialiased;
          color: #666;

          .select-option {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50px;
            -webkit-font-smoothing: subpixel-antialiased;

            @for $i from 1 through 100 {
              &:nth-child(#{$i}) {
                transform: rotateX(-18deg * ($i - 1)) translateZ(150px);
              }
            }
          }
        }
      }
    }

    /* scope solo dentro #year2 */
    #year2 .select-wrap .highlight .highlight-list{
      top: -20px !important;
    }

    #yeardreamlist .dream-input .set {
      font-size: 12px !important;
    }
    #yeardreamlist {
      font-size: 8px;
      line-height: 25px;
      color: #4f4f4f;
    }

    .select-wrap .highlight { 
      position: absolute; 
      top: 50%; 
      transform: translate(0, -50%); 
      width: 100%; 
     /* background-color: #fff; */
      /*border-top: 1px solid #333; 
      border-bottom: 1px solid #333; 
       border: 1px solid #333; */
      /*color: #ff0000; */
      color: #000000;
      font-weight: 600;
      font-size: 24px; 
      overflow: hidden; 
      list-style: none!important;
      background-color: #f1f1f1;

    } 
    .highlight-list {
      /* display: none; */
      position: absolute;
      width: 100%;
      list-style: none!important;
      margin: 0;
      padding: 0;

      border-radius: 9px;
      background-color: rgba(0, 0, 0, 0.06);
    } 



    /* Scope: solo nel blocco numerico */
.G-picker-numbers-1-99 {
  .numbers1-99 {
    .select-wrap {
      position: relative;
      height: 100%;
      text-align: center;
      overflow: hidden;
      font-size: 20px;
      color: #ddd;

      &::before,
      &::after {
        position: absolute;
        z-index: 1;
        display: block;
        content: '';
        width: 100%;
        height: 50%;
      }
      &::before {
        top: 0;
        background-image: linear-gradient(to bottom, rgba(255,255,255,.5), rgba(255,255,255,0));
      }
      &::after {
        bottom: 0;
        background-image: linear-gradient(to top, rgba(255,255,255,.5), rgba(255,255,255,0));
      }

      .select-options,
      .select {
        position: absolute;
        top: 50%;
        left: -20px;
        width: 100%;
        height: 0;
        transform-style: preserve-3d;
        margin: 0 auto;
        display: block;
        transform: translateZ(-150px) rotateX(0deg);
        -webkit-font-smoothing: subpixel-antialiased;
        color: #666;

        .select-option {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 50px;
          -webkit-font-smoothing: subpixel-antialiased;

          /* 100 “facce” come nel year picker */
          @for $i from 1 through 100 {
            &:nth-child(#{$i}) {
              transform: rotateX(-18deg * ($i - 1)) translateZ(150px);
            }
          }
        }
      }
    }
  }

  /* highlight e lista evidenziata solo nel picker numerico */
  .select-wrap .highlight {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    color: #000;
    font-weight: 600;
    font-size: 24px;
    overflow: hidden;
    list-style: none !important;
    background-color: #f1f1f1;
  }

  .highlight-list {
    position: absolute;
    width: 100%;
    list-style: none !important;
    margin: 0;
    padding: 0;
    border-radius: 9px;
    background-color: rgba(0, 0, 0, 0.06);
  }

  /* se serve lo stesso offset della versione year */
  .numbers1-99 .select-wrap .highlight .highlight-list {
    top: -23px !important;
  }
}

    #frequencydreamlist .dream-input .set {
      font-size: 12px !important;
    }
    #frequencydreamlist {
      font-size: 8px;
      line-height: 25px;
      color: #4f4f4f;
    }



    .G-picker-all, .G-picker-allTime, .G-picker-year, .G-picker-numbers-1-99 { 
      opacity: 0;
      margin: 0 auto; 
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
      border-radius: 13px;
      background-color: #ffffff;

      box-shadow: 0px 8px 80px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(80px);
    
    }
    .G-picker-all-show { 
      opacity: 100;
      transition: all .3s;
      z-index: var(--z-system);
    }

    .G-picker::after, .G-picker::before {
      box-sizing: border-box!important;
  }
    .G-picker, .G-pickerTime { 
      position: relative; 
      margin: 0 auto; 
      margin-top: 1em; 
      width: 260px; 
      height: 300px; 
      background-color: #fff; 
      border-bottom: 1px solid #f1f1f1;
      padding-left:7px;
      padding-left:7px;
      padding-top:10px;
      padding-bottom:10px;
    } 
    .box-pulsanti{
      width: 100%;
      padding:4px;
      display: flex;
    }
    .btn-primary{
      background-color: transparent!important;
      color: #007aff!important;
      padding-left: 20px!important;
      padding-right: 20px!important;
      padding-top: 8px!important;
      padding-bottom: 8px!important;
      font-size: 17px!important;
      letter-spacing: 0.5px!important;
      line-height: 24px!important;
      font-weight: 600!important;
      border: none!important;
    }

    .btn-primary:focus{
      outline: none!important;
      border:none!important;
    }
    /* date */ 
    .date-selector, .time-selector, .number-selector { 
      position: absolute; 
      left: 50%; 
      top: 50%; 
      transform: translate(-50%, -50%); 
      perspective: 2000px; 
      display: flex; 
      align-items: stretch; 
      justify-content: space-between; 
      width: 220px; 
      height: 300px; 



      >div { 
        flex: 1; 
      } 
      .select-wrap { 
        font-size: 18px; 
      } 
      .highlight { 
        font-size: 20px; 
      } 
    }

/*loading page inizializing*/
.inizializing-child {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  left: 0%;
  max-width: 100%;
  overflow: hidden;
  max-height: 100%;
/*  opacity: 0.4;*/
  animation: inizializing 4s linear infinite;
}

/* Definisci l'animazione di rotazione */
@keyframes inizializing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
  .inizializinggroup-parent {
  width: 282px;
  position: relative;
  border-radius: 10px;
  height: 256px;
  opacity: 0.5;
  }

  .inizializingvector-wrapper {
  align-self: stretch;
  border-radius: 32px;
  background-color: #222;
  border: 1px solid #222;
  box-sizing: border-box;
  height: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  }
  .inizializing-experienverse {
  align-self: stretch;
  position: relative;
  letter-spacing: -1px;
  font-weight: 500;
  }
  .inizializingframe-group {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 16px;
  color: #b7b7b7;
  }
  .inizializing-parent {
  width: 100%;
  height: 100%;
  position: fixed;
  top:0;
  left:0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px 32px;
  box-sizing: border-box;
  gap: 80px;
  text-align: center;
  font-size: 20px;
  color: rgba(242, 242, 242, 0.9);
  font-family: Inter;
  z-index: var(--z-system);
  background-color: #000;
  }

  #progressBarContainer {
    width: 100%;
    background-color: #222;
    margin: 0;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
  }

  #progressBar {
      width: 100%;
      height: 5px;
      background-color: #5ABAFF;
      border-radius: 25px;
      transition: transform 0.4s ease;
      transform-origin: left;
      transform: scaleX(0);
  }

  #progressBarMoment {
    width: 100%;
    height: 5px;
    background-color: #5ABAFF;
    border-radius: 25px;
    transition: transform 0.4s ease;
    transform-origin: left;
    transform: scaleX(0);
  }


#alertBox{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-system);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(16, 17, 19, 0.4);
  display: flex;

}

.alertBoxInner{
  position: absolute;
  border-radius: 20px;
  background-color: #222;
  font-size: 16px;
  color: #f2f2f2;
  padding: 16px;
  width: 70%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap:4px;

}
.alertBoxInner p{
  font-size: 16px;
  line-height: 18px;
  font-family: Inter;
  color: #f2f2f2;
}


.button-alert{
 /* z-index: 500;
  left: 50%;
  transform: translateX(-50%);*/
  width: 70%;
  cursor: pointer;
  border: 1.5px solid rgba(242, 242, 242, 0.2);
  padding: 0;
  background-color: #000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  box-sizing: border-box;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  font-family: Inter;
  color: #f2f2f2;
  text-align: center;
  margin-top:28px;

}
.hasmood{
  border: 1.5px solid #5ABAFF;
}
.hasmoodname{
color:#5ABAFF;
}
/*Moment chat*/
.unreadmessages:before{
    content: "";
    position: absolute;
    left: -2px;
    top:44px;
    width: 12px; /* Imposta la larghezza desiderata per l'SVG */
    height: 12px; /* Imposta l'altezza desiderata per l'SVG */
  /*  background-image: url("/images/loading.gif");*/
    /*background-size: */
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 8px;
    background-color: #007aff;
    border-radius: 50%;
    z-index: 1;
    
}

.qr-blur {
  filter: blur(4px);
  pointer-events: none;
  opacity: 0.7;
}

.expired-label-overlay {
  font-family: "Inter-Regular", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 2.3em;
  font-weight: bold;
  color: #f2f2f2;
}

.notifymoment:after{
  content: '🟡';
  font-size: 10px;
  width: 10px;
  height: 10px;
  position : absolute;
  top:0;
  right: 0;

}

.mapboxgl-user-location-dot{
  transform: scale(0.7) !important;
  transform-origin: center center !important;
  border: 2px solid #efefef;
}
.mapboxgl-user-location-dot::before,.mapboxgl-user-location-dot::after{
  display: none;
}
.mapboxgl-user-location-accuracy-circle.mapboxgl-marker.mapboxgl-marker-anchor-center {
  display: none;
}

.chat-space.loadingchat::before {
  content: ""; /* Genera un elemento vuoto */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay semi-trasparente */
  z-index: 10; /* Assicura che l'overlay sia sopra il contenuto */
  pointer-events: all; /* Rende l'area incliccabile */
  background-image: url("/images/loading.gif");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: center 100px;
}

/*player box */
.box-experience-players {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.frame-482009 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  position: relative;
}
.frame-482010 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.player-mini-picture {
  border-radius: 50%;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  border-width: 1px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  position: relative;
  object-fit: cover;
}
.finn-kalbhenn {
  color: #f2f2f2;
  text-align: center;
  font-family:"Inter-SemiBold", sans-serif;
  font-size: 10px;
  letter-spacing: -0.32px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-482008 {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.mini-container {
  background: #101113;
  border-radius: 2.4px;
  padding: 2.4px 4.8px 2.4px 4.8px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.ls-exppage {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 6px;
  line-height: 7.2px;
  letter-spacing: -0.19px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mini-container2 {
  background: #5025cb;
  border-radius: 2.4px;
  padding: 2.4px 4.8px 2.4px 4.8px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.role-exppage {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 6px;
  line-height: 7.2px;
  letter-spacing: -0.19px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.host-exppage {
  color: #b7b7b7;
  text-align: center;
  font-family: "Inter-Regular", sans-serif;
  font-size: 8px;
  line-height: 21px;
  letter-spacing: -0.32px;
  font-weight: 400;
  position: relative;
  width: 42px;
  height: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*fine player box*/

/*popup exp answers*/
.questionsPopup{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 500px;
  height: auto;
  max-height: 70%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #101113;
  display: flex;
  padding: 16px;
  gap:8px;
  flex-direction: column;
  z-index: var(--z-fullscreen);
  width: 100%;
  height: 100%;
}
.closeBtn{
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0px;
  margin-left: auto;
  background-color: #818182;
  border-radius: 50%;
  color: #fff;
  
}

.qtitle, .titleanswers {
  color: #b7b7b7;
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.32px;
  font-weight: 600;
  position: relative;
  width: auto;
  margin: auto;
  display: flex;
  /*align-items: center;
  justify-content: flex-start;*/
}
.answerBox{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;

}
.qanswer{
  border: none;
  outline: none;
  font-family: Inter;
  font-size: 16px;
  background-color: #222;
  align-self: stretch;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  height: 54px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 24px;
  box-sizing: border-box;
  color: #b7b7b7;
}
.qrequired{
  color: red;
  width: 5px;
  height: 5px;
}


.alertLink{
  padding: 16px 16px;
  background-color: #101113;
  border-radius: 20px;
  margin: auto;
  display: flex;
  align-content: center;
  justify-content: center;
  margin-top: 40px;
}

/*Quill*/
.ql-picker-label * {
  color:#ffffff!important;
}
.ql-toolbar.ql-snow{
  /*border: 0px;
  background-color:#222222;*/
  display: none;
}
.ql-stroke, .ql-bold{
  color:#ffffff!important;
}
.ql-formats *{
  color:#ffffff!important;
}

/* AI ASSISTANT */ 
#aiLoadingDiv{
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #b7b7b7;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1px;
  margin-left: 20px;
  margin-top: 10px;
}

#aiPromptDiv{
  width: 100%;
  border-bottom: 0.5px solid rgb(60, 61, 65);
  font-weight: bold;
  box-sizing: border-box;
  color: #FFF;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
  padding-left: 32px;
  padding-bottom: 24px;
  margin-top: -2px;
}

.ai-search-box{
  flex-direction: column;
  gap:4px;
  font-family: Inter;

}
.loadingAi{
  width: 20px;
  height: 20px;
  margin: auto;
}

.rowAiResult{
  display: flex;
  flex-direction: row;
  color: #b7b7b7;
  justify-content: space-between;
  gap:2px;
}
.aiResultThumb{
  width: 69px;
  height: 69px;
  border-radius: 10px;
  border: 1.5px solid rgba(242, 242, 242, 0.20);
  flex-shrink: 0;
  margin-left: 18px;
}

.aiResultTitle{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.rowTitle{
  display: flex;
  font-size: 14px;
  margin-left: 17px;
  color: #F2F2F2;
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.32px;
  margin-top: 5px;
}

.rowDescription{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 1.2em;
  max-height: 2.4em; /* 1.2 * 2 */
}
.rowAddress{
  color: #B7B7B7;
  font-family: Inter;
  font-size: 7px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.32px;
  margin-left: 17px;
  margin-top: 4px;

  display: flex;
  height: 7px;
  flex-direction: row;
  flex-shrink: 0; 
}

.aiButtons {
    display: flex;
    flex-direction: row;  /* assicurati che siano in orizzontale */
    gap: 25px;             /* spazio tra i pulsanti */
    margin-top: 4px;
    margin-right: 25px;
    margin-top: -25px;
}

.aiButtons button {
    all: unset;
    cursor: pointer;
    display: inline-flex;  /* li rende flessibili e in linea */
    align-items: center;
    justify-content: center;
}

.ai-top-bar button{
  all: unset;
}
.ai-top-bar button:hover {
  cursor: pointer;
}

.ai-top-bar{
  display: flex;
  justify-content: flex-end;
  padding: 8px 12px;
  position: absolute;
  right: 0px;
  pointer-events: none;

  color: var(--Neutral-500, #B7B7B7);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 175% */
  letter-spacing: -1px;
}

.closeAiIcon {
    width: 18px;
    height: 18px;
}

.heartIcon {
    width: 24px;
    height: 21px;
}

.poiIcon {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    vertical-align: middle;
}

.aiRowBottom{
  display: flex;
  flex-direction: row;
  color: #b7b7b7;
  justify-content: space-around;
  height: 40px;
  align-items: center;
}

.aiResultSelection{
  width: 20px;

}
.aisearchresult{
  margin-top: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: auto;
  gap: 6px;

}
.aiConfirmSelection{
  background-color:#f1f1f1;
  color: #101113;
  padding: 8px;
  border-radius: 20px;
}

.aimenubar{
  width: 100%;
  display: flex;
  flex-direction: row;
  gap:4px;
}


.textareaai{
  width: 100%;
  height: 60px;
  border: 1px solid #b7b7b7;
  border-radius: 20px;
  padding: 10px;
  resize: none;
  vertical-align: top;
  box-sizing: border-box;
  font-family: inherit;

}
.aibtn{
  padding: 4px;
  font-size: 20px;
  border: 1px solid #b7b7b7;
  border-radius: 50%;
  margin-top: 16px;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;
  
  
}
.aibtn:last-child {
  margin-left: auto;
}


/*GESTIONE TASTIERA*/
.keyboard-visible {
  /* Regola il layout quando la tastiera è visibile */
  margin-bottom: 50px; /* Esempio */
  border:2px solid violet!important;
}

/*CERCHI progress*/
.dash-explorer-dna1 {
  width: 100%;
  height: 436px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
  max-width: 312px;
  max-height: 436px;
  text-align: center;
  font-size: 20px;
  color: #fff;
}
.dash-sfera-parent {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}
.dash-butterfly-app-1-icon {
  width: 312px;
  position: absolute;
  margin: 0 !important;
  top: calc(50% - 176px);
  left: calc(50% - 156px);
  height: 312.4px;
  object-fit: cover;
  z-index: 0;
}
.dash-channels-icon {
  width: 241.2px;
  position: absolute;
  margin: 0 !important;
  top: 35.99px;
  left: 35.76px;
  height: 361px;
  z-index: 1;
}
.dash-sfera-parent1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 118px;
}
.circle-wrapper {
  position: relative;
  width: 74px;
  height: 74px;
}

.circle-delta{
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 6px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.32px;
  position: absolute;
}

/* Posizionamenti */
.delta-top {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.delta-bottom {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.delta-top-left {
    top: -5px;
    left: -5px;
}
.delta-top-right {
    top: -5px;
    right: -5px;
}


.bg {
  stroke: rgba(217, 217, 217, 0.7);
  stroke-width: 4;
  fill: none;
}

.progress {
  /*stroke: #4caf50;*/
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
}

.circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  width: 56px;
  
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.progNumber{
  display: flex;
  font-weight: 600;
  font-family: Inter;
  font-size: 20px;
  line-height: 28px;
}
.progLabel{
  display: flex;
  font-weight: 600;
  font-family: Inter;
  font-size: 6px;
  
}
.dash-sfera-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 120px;
}
.dash-sfera-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 33px;
}
.dash-live-more-child {
  width: 100.1px;
  position: relative;
  border-radius: 20px;
  height: 100.1px;
  z-index: 0;
}
.dash-live-more1 {
  width: 46px;
  position: absolute;
  margin: 0 !important;
  top: 32px;
  left: calc(50% - 23.05px);
  letter-spacing: -0.32px;
  line-height: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  z-index: 1;
  font-family: Inter;
}
.dash-live-more2 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; /* importante per il testo */
  letter-spacing: -0.32px;
  line-height: 16px;
  font-weight: 600;
  font-family: Inter;
  width: 46px;
  position: absolute;
  margin: 0 !important;
  top: 32px;
  left: calc(50% - 23.05px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  z-index: 1;
}
.dash-live-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
  font-size: 12px;
}
img.lazy-load[src*="loading.gif"] {
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
}

/*TRIBUTE taggin*/
.tribute-container {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: var(--z-system);

  display: block; /* ✅ usa block, non flex */
  box-sizing: border-box; /* ✅ importante per calcolo altezza */
  width: auto;
  min-width: 150px;
  max-height: 220px;

  overflow-y: auto;
  overflow-x: hidden;

  background-color: #1e1e1e;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #b7b7b7;
}

.tribute-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tribute-container li {
  padding: 6px 10px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*.tribute-container li.custom-highlight {
  background-color: #2d2d2d;
  color: #fff;
}*/

.tribute-container .custom-highlight {
  display: block;
  padding: 6px 10px;
  color: #b7b7b7;
}

.tribute-container li.highlight .custom-highlight {
  background-color: #2d2d2d;
  color: #fff;
  border-radius: 3px;
}

.tribute-container li.highlight {
  background-color: #2d2d2d;
  color: #fff;
}

.tribute-container li {
  padding: 6px 10px;
  cursor: pointer;
  white-space: nowrap;
}


/*.tribute-container {
  background-color: #1e1e1e;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #b7b7b7;
  z-index: 9999;
  overflow-y: auto!important;
  overflow-x: hidden!important;
  display: flex!important;
  flex-direction: column!important;
  min-width: 100px;
  max-height: 200px; 

}
.tribute-container ul{
  background: transparent;
}*/
/*.tribute-container li {
  padding: 6px 10px;
  cursor: pointer;
}*/

/*.tribute-container li.highlight {
  background-color: #444;
  color: #ffffff;
  font-size: 14px;
}*/

/*one shot bottom sheet*/
#oneShotContent{
  /*max-width: 320px;*/
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;

  max-height: calc(90vh - 100px);

}
.oneshot-inner-content{
  margin-left: 16px;
  margin-right: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap:32px;

}
/*slider 1-10*/
.frame-parent-slider {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.slider-one-ten {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  text-align: center;
  color: #f2f2f2;
  width: 340px;
  align-self: center;
}

.sliderPoints:active{
  outline: none;
}

.wrapper-slider {
  width: 24px;
  border-radius: 5px;
  background-color: #222;
  height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.div-slider {
  position: relative;
  letter-spacing: -0.32px;
  line-height: 16px;
  font-weight: 600;
  -webkit-user-select: none; /* Safari, Chrome */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Standard */
}
.slidecontainer {
    width: 100%;
  }

  .sliderPoints {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
}




/*POPUP LEVEL UP*/
.level-up,
.level-up * {
  box-sizing: border-box;
}
.level-up {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  padding: 20px 16px env(safe-area-inset-bottom, 20px);
  box-sizing: border-box;
  overflow: hidden;
}

.level-up-screen3{
  gap: 20px;
  align-items: center;
  justify-content: center;
}

/* Responsive: schermi piccoli (< 700px altezza) */
@media (max-height: 700px) {
  .level-up {
    padding: 12px 16px env(safe-area-inset-bottom, 12px);
  }
  .growing-everyday {
    font-size: 24px;
  }
  .polygon-lvl {
    width: 90px;
    height: 90px;
  }
  .lvl-number {
    font-size: 26px;
    margin-bottom: -62px;
  }
  .level-container {
    gap: 12px;
  }
  .progress-container {
    margin-top: 16px;
  }
  .button-levelup {
    height: 54px;
    min-height: 54px;
  }
  .level-up-screen3 {
    gap: 14px;
  }
}

.moment-streak-full{
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 42px;
  border: 1px solid rgba(242, 242, 242, 0.20);
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.moment-streak-empty{
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 42px;
  border: 1px solid rgba(242, 242, 242, 0.20);
}
.level-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    margin-top: auto;
    gap: 20px;
    justify-content: center;
}

.polygon-lvl {
    width: 119px;
    height: 119px;
    opacity: 0.9;
    z-index: 2;
    /* rimosso absolute e translate */
}

.lvl-number {
    color: var(--neutral-100, #f2f2f2);
    font-family: "Inter-SemiBold", sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: -79px; /* sposta il numero sopra l’immagine */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* sopra l’immagine */
}

.level-center {
    display: flex;
    flex-direction: column;
    align-items: center; /* centra numero e immagine */
    position: relative;
}

.side-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 96px;
}

/* Mantieni la rotazione */
.div3 {
    transform: rotate(-19.625deg);
    margin-bottom: -20px;
}
.div4 {
    transform: rotate(8.471deg);
    margin-bottom: 95px;
}


.dreamer-lv-l {
  color: var(--neutral-100, #f2f2f2);
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 14px;
  letter-spacing: -0.32px;
  font-weight: 600;
  width: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.line-pt-xdest {
  border-style: solid;
  border-color: var(--neutral-500, #b7b7b7);
  border-width: 1px 0 0 0;
  width: 103px;
  transform: rotate(90deg) scale(1.5, 1);
  filter: blur(1px);
}
.lifestyle-pts,
.xdest-earned {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 16px;
  letter-spacing: -0.32px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lifestyle-pts {
  margin-top: 8px;
}
.xdest-earned {
  margin-top: 8px;
}

.lifestyle-points-earned,
.xdest-tokens-added-to-your-inventory {
  color: var(--neutral-500, #b7b7b7);
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 8px;
  letter-spacing: -0.32px;
  font-weight: 600;
  width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lifestyle-points-earned {
  margin-top: 3px;
}
.xdest-tokens-added-to-your-inventory {
  margin-top: 3px;
}

.xdest-logo-scontornato-2 {
  width: 51px;
  height: 51px;
  left: 232px;
  top: 523px;
  object-fit: cover;
}

.coconut-pts {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 36px;
  letter-spacing: -0.32px;
  font-weight: 600;
}

.items-earned {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: auto;
  margin-bottom: 0;
}

.earned-col {
  display: flex;
  flex-direction: column; /* incolonna gli elementi */
  align-items: center;    /* centrati in orizzontale */
  gap: 4px;
}

.growing-everyday {
  color: var(--neutral-100, #f2f2f2);
  text-align: center;
  font-family: "Inter-Medium", sans-serif;
  font-size: 32px;
  letter-spacing: -1px;
  font-weight: 500;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.exit-your-comfort-zone-always-make-this-start-moving {
  color: var(--neutral-100, #f2f2f2);
  text-align: center;
  font-family: "Inter-Medium", sans-serif;
  font-size: 16px;
  letter-spacing: -1px;
  font-weight: 500;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  z-index: 2;
}

.your-shared-moment{
  color: var(--Neutral-100, #F2F2F2);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1px;
  letter-spacing: -1px;
  text-align: center;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  z-index: 2;
}

.clock00 {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.32px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.button-levelup {
  cursor: pointer;
  border: 1.5px solid rgba(242, 242, 242, 0.2);
  padding: 0;
  background-color: #000;
  width: 283px;
  height: 67px;
  border-radius: 20px;
  box-sizing: border-box;
  backdrop-filter: blur(20px);
  align-self: center;
  margin-top: auto;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  min-width: 283px; /* Impedisce che il pulsante diventi più stretto */
  min-height: 67px; /* Impedisce che il pulsante diventi più basso */
}

.button-levelup:active {
  transform: none; /* Rimuove qualsiasi effetto di schiacciamento */
  box-shadow: none; /* Rimuove eventuali effetti di ombra */
  background-color: #333; /* Cambia il colore di sfondo al clic */
}

.text-button-levelup {
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    font-family: Inter;
    color: #f2f2f2;
    text-align: center;
}

.progress-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: relative;
    flex: 0 0 auto;
    margin-top: 24px;
    width: 100%;
}

.progress-lvls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex: 0 0 auto;
    width: 100%;
}

.progress-text {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Inter", Helvetica;
    font-weight: 600;
    color: rgba(183, 183, 183, 1);
    font-size: 12px;
    text-align: center;
    letter-spacing: -0.32px;
    line-height: 16px;
    white-space: nowrap;
    font-style: normal;
}

.lvlup-max {
  display: flex;
  justify-content: flex-end; /* allinea tutto a destra */
  align-items: center;       /* centra verticalmente */
  gap: 4px;                  /* spaziatura tra gli span */
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  font-size: 10px;
  color: #b7b7b7;
  width: 100%;
  position: relative;
  width: 100%;
}

#progress-points {
  position: absolute;
  top: 0;
  left: 0; /* punto di partenza */
  color: #5abaff;
  white-space: nowrap;
}

.progress-text2 {
    color: #b6b6b6;
    letter-spacing: -0.03px;
}

.progress-dash-wrapper {
    width: 100%;
    height: 10px; /* altezza della barra */
    background-color: #333; /* colore sfondo barra base */
    border-radius: 5px;
    overflow: hidden;
    margin-top: 4px;
}

.progress-lvlup-bar {
    width: 100%;
    height: 100%;
    background-color: #5abaff; /* colore della progress bar */
    border-radius: 5px;
    transform-origin: left;
    transform: scaleX(0);
}

.moment-ended,
.moment-ended * {
  box-sizing: border-box;
}
.moment-ended {
  height: 100vh;
  padding: 20px 20px;
  box-sizing: border-box;
  overflow-y: auto;
  overscroll-behavior: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.moment-ended::-webkit-scrollbar { display: none; }
.moment-ended-grateful {
  width: 100%;
}

.moment-ended-x {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  gap: 8px;

}

#ended-moment-players {
  margin-top: 18px;
  gap: 50px;
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.moment-ended-time-ago{
  color: var(--Neutral-500, #B7B7B7);
  text-align: center;
  font-family: Inter;
  font-size: 8px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moment-ended-addfriend{
  width: 89px;
  height: 27px;
  flex-shrink: 0;
  border-radius: 20px;
  border: 1px solid var(--bordino, rgba(242, 242, 242, 0.20));
  background: var(--Neutral-900, #222);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

  color: var(--Neutral-100, #F2F2F2);
  text-align: center;
  font-family: Inter;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.moment-ended-pfp{
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.30);
  flex-shrink: 0;
  width: 91px;
  height: 91px;
  position: relative;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.moment-ended-creator-butterfly{
  color: #ffffff;
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 20px;
  line-height: 18.2px;
  letter-spacing: -0.42px;
  font-weight: 600;
  position: absolute;
  right: -33px;
  top: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moment-ended-username{
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.32px;
  margin-top: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock00 {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
}

.your-shared-moment {
    padding: 10px;
    font-size: 16px;
    text-align: center;
}

.moment-ended-header{
  display: flex; 
  flex-direction: row;
}

.hold-to-be-grateful{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 60px;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;
  height: 180px;
}

.dreamers-sharing-the-moment{
  color: var(--Neutral-500, #B7B7B7);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
  margin-top: 60px;
  padding-left: 40px;
}

.grateful-Button {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 16px 4px rgba(255, 255, 255, 0.4);
  transition: box-shadow 0.3s ease;
  display: flex;
  color:#000;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 33px;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;
}



/*AI INTRO*/
.ai-assistant-2,
.ai-assistant-2 * {
  box-sizing: border-box;
}
.leverage-the-power-of-ai-to-explore-more {
  color: var(--neutral-100, #f2f2f2);
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 22px;
  letter-spacing: -1.5px;
  font-weight: 600;
  position: absolute;
  left: 50%;
  translate: -50%;
  top: 90px;
  width: 295px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.discover-new-places-and-experiences-wherever-you-are {
  color: var(--neutral-500, #b7b7b7);
  text-align: center;
  font-family: "Inter-Regular", sans-serif;
  font-size: 16px;
  letter-spacing: -1px;
  font-weight: 400;
  position: absolute;
  left: calc(50% - 141px);
  top: 170px;
  width: 279.47px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.magic-search {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 20px;
  line-height: 21px;
  letter-spacing: -1px;
  font-weight: 600;
  position: absolute;
  left: 50%;
  translate: -50%;
  top: 25px;
  width: 255.69px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-assistant-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #000000;
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 20px;
}

.ai-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  /*height: 250px;*/
  width: 300px;
}
.ai-intro-button {
  cursor: pointer;
  border: 1.5px solid rgba(242, 242, 242, 0.2);
  padding: 0;
  background-color: #000;
  width: 283px;
  position: relative;
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-sizing: border-box;
  height: 67px;
}
.text-button-ai-intro {
  all: unset;
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 27px);
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  font-family: Inter;
  color: #f2f2f2;
  text-align: center;
  font-weight: 700;
}

.ai-image-container {
  margin: 20px 0; /* spazio tra scritte e immagine */
  text-align: center;
  top: 100px;
}

.ai-map-image {
  width: 262px;
  height: 322px;        /* altezza fissa */
  object-fit: cover;    /* mantiene proporzioni riempiendo il contenitore */
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  transform: rotate(180deg);
}

.ai-image-container {
  position: relative; /* serve per posizionare le emoji sopra */
  text-align: center;
  margin: 20px 0;
}

.emoji-overlay {
  position: absolute;
  inset: 0; /* copre tutta l’area della mappa */
  pointer-events: none; /* clic sul popup passa al pulsante sotto */
}

.emoji-circle {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}

.emoji-star {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.emoji-big {
  position: absolute;
  font-size: 100px;
  color: #000000;
}

.custom-popup{
  display: flex;
  z-index: var(--z-fullscreen);
  position: absolute;
  background-color: #000;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
  top: 0;
}

.welc-xdest{
  color: #F2F2F2;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1px;
  width: 313px;
  margin-top: 20%;
}

.welc-xdest2{
  color: #F2F2F2;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
}

.welc-xdest-txt{
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1px;
  white-space: pre-line;
  max-width: 242px;
}

.welc-xdest-txt2{
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1px;
  white-space: pre-line;
  width: 291px;
}

.welc-xdest-txt3{
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -1px;
  margin-top: 46px;
  margin-bottom: 69px;
}

.welc-xdest-link{
  width: 218px;
  color: var(--Neutral-500, #B7B7B7);
  text-align: right;
  font-family: Inter;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 290%; /* 40.6px */
  letter-spacing: -1px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.welc-xdest-sign{
  white-space: pre-line;
  color: #F2F2F2;
  font-family: Inter;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  padding-left: 200px;
}

#welcxdest-header{
  width: 100%;
  margin-left: 50px;
}

.messages-bottom-sheet{
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin-top: -25px;
  position: absolute;
  font-family: Inter;
  gap: 5px;
  justify-content: center;
}

.messages-header{
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  height: fit-content;
  margin-top: 0px;
  font-family: Inter;
  justify-content: center;
}


.messages-content{
  flex:1; /* occupa tutto lo spazio rimanente */
  overflow-y:auto;
  padding:10px;
  left: 0;
}

/* Base di default */
.one-shot-bottom-sheet {
  /* qui lasci i tuoi stili generici */
  box-shadow: 0px -4px 12px rgba(255, 255, 255, 0.3);
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;
  overscroll-behavior: none;
  touch-action: none;
}
.one-shot-bottom-sheet .one-shot-content {
  overscroll-behavior: none;
}
.one-shot-bottom-sheet .one-shot-content [style*="overflow-y"] {
  overscroll-behavior: none;
  touch-action: pan-y;
}

/* Variante specifica per questa istanza */
.one-shot-bottom-sheet.journey {
  border-radius: 30px 30px 0 0;
  background: var(--Neutral-900, #222);
  backdrop-filter: blur(2px);
  box-shadow: unset;                 /* rimuove ombra */
}

/* (facoltativo) handle coerente */
.one-shot-bottom-sheet.journey .one-shot-handle .drag-bar-one-shot {
  background: rgba(255,255,255,.25);
}

.one-shot-bottom-sheet.journey {
  border-radius: 30px 30px 0 0;
  background: var(--Neutral-900, #222);
  backdrop-filter: blur(2px);
  box-shadow: none;
}
.one-shot-bottom-sheet.journey .journey-level-header {
  font-size: 16px; font-weight: 700;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.one-shot-bottom-sheet.journey .btn-start-level {
  color: #f2f2f2;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 20px;
  border: 1.5px solid rgba(242, 242, 242, 0.20);
  background: var(--Black, #000);
  backdrop-filter: blur(5px);
  width: 159px;
  height: 41.198px;
}

#momentSummaryOverlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0);
  z-index: 899;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
  color: white;
}

#momentSummaryHeader {
  display: flex;
  align-items: center;
  height: 50px;
  margin-bottom: 20px;
}

#LearnHeader {
  display: flex;
  align-items: center;
  height: 50px;
  margin-bottom: 20px;
  width: 100%;
}

#momentSummaryBackBtn {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

#LearnBackBtn {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.moment-summary-title {
  flex: 1;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  padding-left: 20px;
}

#momentSummaryContent .moment-detail {
  margin-bottom: 15px;
  padding: 15px;
  background: #000;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.memorySection{
  margin-bottom: 15px;
  padding: 30px;
  background: #000;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.moment-players-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.moment-players-container .tag-friend {
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 12px;
}

.moment-players-container .ellipse-847 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 3px;
}

.zIndex-top-moment{
  z-index: var(--z-toast);
  animation: moment-highlight-pulse 1.5s ease-out;
}

@keyframes moment-highlight-pulse {
  0%   { transform: scale(1.3); filter: brightness(1.6) drop-shadow(0 0 12px rgba(255,255,255,0.7)); }
  50%  { transform: scale(1.15); filter: brightness(1.3) drop-shadow(0 0 8px rgba(255,255,255,0.4)); }
  100% { transform: scale(1); filter: brightness(1) drop-shadow(0 0 0 transparent); }
}

.one-shot-bottom-sheet.sheet-shadow{
  box-shadow: inset 0 8px 12px -8px rgba(119, 119, 119, 0.64);
}

.dreamlist-title {
  flex: 1;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: -1px;
}

.dreamlist-ignite-header{
  color: #3C3D41;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.32px;
  flex-shrink: 0;
  width: 100%;
  text-align: right;
  max-width: 330px;
}

#DreamlistHeader {
  display: flex;
  align-items: center;
  height: 50px;
  margin-bottom: 20px;
  width: 100%;
  flex-direction: column;
}

.dreamlistheadertext {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 400px;
  width: 100%;
}

.dreamlist-title-edit {
  font-size: 1.5rem;
  font-family: Inter;
  min-width: 70px;
  text-align: left;
}

.dreamlist-ignite{
  color: #3C3D41;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.32px;
}

.dreamlist-ignite-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  top: 20%;
  padding-bottom: 250px;
}

#dreamlist-intro .dreamlist-bg{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 585px);
  height: 84%;
  min-height: 585px;
  object-fit: cover;
}

/* overlay per leggibilità */
/*#dreamlist-intro::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
              rgba(0,0,0,.4) 0 84%,
              rgba(0,0,0,0) 84% 100%);
  pointer-events: none;
  z-index: 1;
}*/

/* contenuto sopra l’overlay */
#dreamlist-intro .content-container-journey-intro{
  position: relative;
  z-index: 2;
  color: #F2F2F2;
}


#welcome-popup {
  display: flex;
  gap: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#welcome-popup2{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#welcome-popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Aggiungi trasparenza */
  z-index: 1; /* Per mettere l'overlay sopra l'immagine */
}

.welc-xdest, .welc-xdest-txt, .button-levelup {
  z-index: 2;
}



.dream-cover-card {
    width: 100%;
    background-color: #222;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    color: #fff;
    border: 1px solid rgb(183, 183, 183);
    margin-top: 10px;
    max-width: 400px;
}

.dream-cover-top {
    display: flex;
    justify-content: space-between;
}

.dream-tag {
    border-radius: 20px;
    background: #000;
    backdrop-filter: blur(2px);
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: -0.32px;
    padding: 6px 14px;
}
.dream-tag.hid {
  opacity: 0;
}
.dream-activity.hid {
  opacity: 0;
}

.dream-cover-mid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dream-activity {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #000;
    backdrop-filter: blur(2px);
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: -0.32px;
}

.dream-icon {
    color: var(--Neutral-100, #F2F2F2);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1px;
}

.dream-avatars {
    display: flex;
    flex-direction: row;
}

.avatar {
    width: 31px;
    height: 31px;
    object-fit: cover;
    margin-left: -8px;
    border-radius: 50%;
    border: 1px solid var(--white-main, #F2F2F2);
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.dream-cover-bottom {
    background-color: #000;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;  
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.dream-cover-tophalf {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 11px 13px;
    display: flex;
    flex-direction: column;
    gap: 112px;
    color: #fff;
}

.dream-date {
    font-size: 12px;
    color: #B7B7B7;
    letter-spacing: -0.32px;
}

.dream-text {
    color: #F2F2F2;
    font-size: 16px;
    line-height: normal;
    letter-spacing: -0.82px;
}

.dream-progress {
    display: flex;
    justify-content: right;
    font-size: 12px;
    flex-direction: row;
    gap: 10px;
    color: #B7B7B7;
    font-weight: 500;
    letter-spacing: -0.32px;
}

.progress-step {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid var(--Neutral-700, #3C3D41);
  background: rgba(34, 35, 38, 0.70);
  text-align: center;
  line-height: 55px;
  font-size: 25px;
}

.dl-editing { position: relative; }

.dream-delete-btn{
  position: absolute;
  top: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid red;
  background: red;
  color: #F2F2F2;
  font-size: 21px;
  line-height: 12px;
  cursor: pointer;
  user-select: none;
  z-index: 2;
}

/* tremolio X edit mode dreamlists*/
@keyframes x-shake {
  0%   { transform: translateX(0) rotate(0); }
  20%  { transform: translateX(-1px) rotate(-6deg); }
  40%  { transform: translateX(1px) rotate(6deg); }
  60%  { transform: translateX(-0.5px) rotate(-4deg); }
  80%  { transform: translateX(0.5px) rotate(4deg); }
  100% { transform: translateX(0) rotate(0); }
}

/* applica il tremolio solo in edit mode */
.dream-cover-card.dl-editing .dream-delete-btn {
  animation: x-shake .5s ease-in-out infinite;
  transform-origin: 50% 50%;
  will-change: transform;
}

/* rispetto accessibilità */
@media (prefers-reduced-motion: reduce) {
  .dream-cover-card.dl-editing .dream-delete-btn { animation: none; }
}



/* Stato EDIT attivo: glow TESTO più evidente */
.dreamlist-title-edit.is-done-active {
  color: #e8fcff;
  text-shadow:
    0 0 3px  rgba(0,210,255,.55),
    0 0 8px  rgba(0,210,255,.45),
    0 0 16px rgba(0,210,255,.35),
    0 0 28px rgba(0,210,255,.20);
  animation: textGlowBlinkStrong 1.2s ease-in-out infinite alternate;
  filter: saturate(1.1);
  box-shadow: none; /* nessun glow di sfondo */
}

/* Hover/Focus: leggera accentuazione */
.dreamlist-title-edit.is-done-active:hover,
.dreamlist-title-edit.is-done-active:focus-visible {
  text-shadow:
    0 0 4px  rgba(0,210,255,.65),
    0 0 10px rgba(0,210,255,.52),
    0 0 20px rgba(0,210,255,.40),
    0 0 34px rgba(0,210,255,.25);
  transform: translateY(-1px);
  outline: none;
}

/* Animazione: da “medio” a “forte” */
@keyframes textGlowBlinkStrong {
  0% {
    text-shadow:
      0 0 2px  rgba(0,210,255,.40),
      0 0 6px  rgba(0,210,255,.32),
      0 0 12px rgba(0,210,255,.24),
      0 0 20px rgba(0,210,255,.14);
    filter: brightness(1.02);
  }
  100% {
    text-shadow:
      0 0 4px  rgba(0,210,255,.75),
      0 0 12px rgba(0,210,255,.60),
      0 0 24px rgba(0,210,255,.45),
      0 0 40px rgba(0,210,255,.30);
    filter: brightness(1.12);
  }
}

/* Riduzione movimento */
@media (prefers-reduced-motion: reduce) {
  .dreamlist-title-edit.is-done-active { animation: none; }
}

/* Overlay full screen, centrato */
.loader-box{
  position: fixed; inset: 0;
  display: grid; place-items: center;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.8);
  z-index: var(--z-fullscreen);
}

/* Box immagine con aspect-ratio dinamico */
.container-bigimage{
  position: relative;
 /* --img-ar: 9/16;
  aspect-ratio: var(--img-ar);*/
  /*max-width: 90vw; */
 /* max-height: 90vh;*/
  display: flex; 
  align-items: center; 
  justify-content: center;
  box-sizing: border-box;
  border-radius: 12px; 
  overflow: hidden;
  background: transparent;
  height: 100%;
  width: 100%;
}
/*.image-box-memory{

  position: relative;     
  display: inline-block;   
  max-width: 100%;     
  max-height: 100%;     
  overflow: hidden; 
  width: auto;
  height: 100%;

}*/

.image-box-memory {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  max-width: 100vw;
  max-height: 100vh;
}
.big-image {
  display: block;
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* L’immagine riempie il box senza tagli */
/*.container-bigimage img:first-child{
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 10px;
}*/
/*.big-image{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;

}*/

/* Testi e watermark restano dentro al box */
.big-description-section{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 20px; box-sizing: border-box;
  max-height: 35vh; overflow: hidden;
  width: 100%;
}
.xclose{ position:absolute; top:12px; width:36px; height:36px;
  display:flex; justify-content:center; align-items:center;
  background:rgba(0,0,0,.25); border-radius:50%; cursor:pointer; z-index:2;
}
#xclose{ left:12px; } #xdownload{ right:12px; }
.watermarkMemory{ position:absolute; right:12px; bottom:12px;
  max-width:30vw; max-height:10vh; object-fit:contain; pointer-events:none;
}

/* Fallback per browser vecchi senza aspect-ratio */
@supports not (aspect-ratio: 1 / 1) {
  .container-bigimage{
    max-width: 90vw; max-height: 90vh;
    width: auto; height: auto;
  }
  .container-bigimage img:first-child{
    max-width: 100%; max-height: 100%;
  }
}

.neon-text {
  --neon: #ffffff6e;
  --neon2: #edfaff;
  color: #fff;
  -webkit-text-stroke: .6px var(--stroke);
  text-shadow: 0 0 10px #ffffff36, 0 0 1px #ffffff73, 0 0 10px #ffffff1c, 0 0 10px #f000, 0 0 6px #ffffff57;
  font-weight: 400;
  letter-spacing: 0.2px;
}




/* usa le stesse variabili del tuo testo */
:root{
  --neon: #edfaff;
  --neon2: #edfaff;   /* se vuoi varianti */
  --core: #fff;       /* “stroke” chiaro simulato */
}

/* intensità ridotta per hover o dark-ui */
.neon-img.dim { filter:
  drop-shadow(0 0 0.5px var(--core))
  drop-shadow(0 0 4px color-mix(in srgb, var(--neon) 50%, transparent))
  drop-shadow(0 0 12px color-mix(in srgb, var(--neon) 60%, transparent));
}

.neon-img {
  filter: 
  drop-shadow(0 0 1px #ffffff78) 
  drop-shadow(0 0 1px #ffffff3d) 
  drop-shadow(0 0 6px color-mix(in srgb, #edfaff5e 20%, transparent)) 
  drop-shadow(0 0 6px color-mix(in srgb, #edfaff78 20%, transparent)) 
  drop-shadow(0 0 1px #edfaff3d);
}

.frame-parent-radial, #second-radial, .dream-cover-card, .sdk1, 
.explorer-parent, .profile-wrapper, .recents-parent 
{
  /*impedisce la selezione del testo*/
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;
}


/* Rune Illumination Effect Static */
/* Rune Illumination Effect Static – versione più piena */
.rune-illumination {
    animation: runePopOut 0.5s ease-out, runeStayVisible 1s ease-out forwards;
}

@keyframes runePopOut {
    0% {
        /* glow iniziale più concentrato */
        box-shadow:
            0 0 10px 2px rgba(22, 157, 255, 1),
            0 0 20px 5px rgba(102, 53, 206, 1);
    }
    100% {
        /* glow più forte e meno “trasparente” */
        box-shadow:
            0 0 15px rgba(22, 157, 255, 1),
            0 0 35px rgba(102, 53, 206, 1),
            0 0 60px rgba(102, 53, 206, 1);
    }
}

@keyframes runeStayVisible {
    0% {
        box-shadow:
            0 0 15px rgba(22, 157, 255, 1),
            0 0 35px rgba(102, 53, 206, 1),
            0 0 60px rgba(102, 53, 206, 1);
    }
    100% {
        /* statico, ma denso */
        box-shadow:
            0 0 15px rgba(22, 157, 255, 1),
            0 0 35px rgba(102, 53, 206, 1),
            0 0 60px rgba(102, 53, 206, 1);
    }
}



/*FILIGRANA TEST*/
.konva-stage-container {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
}

/* ============================
   MINI PHOTO EDITOR
   ============================ */
.mini-photo-editor {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

.mini-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.mini-editor-title {
  font-weight: 600;
}

.mini-editor-subtitle {
  opacity: 0.7;
  font-size: 11px;
}

/* ============================
   FILTER PRESET THUMBNAILS
   ============================ */
.mini-editor-presets {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 330px;
  padding: 8px;
  box-sizing: border-box;
}

.mini-editor-presets::-webkit-scrollbar {
  display: none;
}

.preset-btn {
  position: relative;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  width: 70px;
  min-width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.preset-btn img.preset-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preset-btn .preset-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px 3px;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.preset-btn.active {
  outline: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.4);
}

/* ============================
   FILTER PREVIEW (all devices)
   ============================ */
.filter-preview-wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.filter-preview-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 0.15s ease-out;
}