




/*######## MY APP ########### */

/*SCROLL BARS*/
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.4); }

@media (prefers-color-scheme: dark) {
    ::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
    ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); }
    ::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.4); }
}

.theme-dark ::-webkit-scrollbar-track, .dark ::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.theme-dark ::-webkit-scrollbar-thumb, .dark ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); }

/* BOTTOM TOOL BAR */
.toolbar-inner {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.toolbar-inner .link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px; 
  color: #888;
  transition: color 0.2s;
  border-radius: 50%; 
  background-color: transparent;
}
.toolbar-inner .link svg {
  stroke: currentColor;
}
.toolbar-inner .link.active {
  color: var(--f7-color-primary) !important;
  background-color: transparent !important;
}
.toolbar-indicator {
  position: absolute;
  bottom: 3px;
  width: 4px;
  height: 4px;
  background-color: var(--f7-color-primary);
  border-radius: 50%;
}
.toolbar-inner .link::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  pointer-events: none;
  transition: transform 0.6s, opacity 0.6s;
}
.toolbar-inner .link:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: transform 0s, opacity 0.3s;
}
.toolbar-layout-vertical .link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
.toolbar-layout-vertical .link span {
    font-size: 8px; 
    font-weight: 400; 
    margin-top: 2px;
	margin-bottom:10px; 
    line-height: 1;
	text-transform: uppercase;
  }
  
/*---toast icon message---- */
.custom-toast-lucide .toast-inner {
  padding: 12px 16px;
  border-radius: 12px;
  background-color: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 15px;
  backdrop-filter: blur(6px);
}
.custom-toast-lucide svg {
  stroke: var(--f7-color-primary);
}
.toast-close-button {
  cursor: pointer;
  color: inherit;
}

.text-ellipsis {
  white-space: nowrap !mportant;
  overflow: hidden !mportant;
  text-overflow: ellipsis !mportant;
}























/* LEFT MENU PANEL */
.panel.panel-left {
  border-top-right-radius:    0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.2);
}
/* RIGHT MENU PANEL */
.panel.panel-right {
  border-top-left-radius:     0 !important;
  border-bottom-left-radius:  0 !important;
}
















/* Base circle wrapper (light & dark as before) */
.circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;               /* your padding around the image */
  border-radius: 50%;         /* keep the circle shape */
  background-color: rgba(200,200,200,0.1); /* light mode fallback */
}

/* Ensure the image stays circular */
.circle img {
  display: block;
  border-radius: 50%;
}

/* Rounded “card” matching the circle’s curvature */
.lista_clubes {
  padding: 2px 2px;               /* vertical + horizontal padding */
  margin: 4px 10px;                   /* space between list items */
  border-radius: 60px;             /* half of your 48px circle diameter */
  background-color: #fff;          /* light mode background */
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  transition: background-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  padding:0px !important;
}

/* Space between circle avatar and title */
.lista_clubes .circle {
  margin-right: 12px;
}

/* Dark-mode overrides */
@media (prefers-color-scheme: dark) {
  .lista_clubes {
    background-color: #2c2c2e;      /* dark gray card */
    box-shadow: 0 1px 1px rgba(0,0,0,0.6);
  }
}

/* Dark‐mode override for both prefers-color-scheme and F7's .dark class */
@media (prefers-color-scheme: dark) {
  .lista_clubes {
    background-color: #2c2c2e !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6) !important;
  }
}

/* And in case you’re toggling .dark on <html> by JS/theme switch: */
html.dark .lista_clubes {
  background-color: #2c2c2e !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6) !important;
}

/* Optional: add a tap/highlight effect */
.lista_clubes:active {
  opacity: 0.7;
  transition: opacity 0.1s;
}

























/* ####### New APP configs */
/* #################### */



/* ICONES LUCILE */
.icon svg {
  stroke-width: 1;
  opacity:0.5;
 }
 
 svg {
  stroke-width: 1;
 }
 
 /* BARRA DE PESQUISA NA ESCOLHA DA BOX */
.top_search_bar {
  background: var(--f7-bars-bg-color, #fff);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  transition: background 0.1s ease, box-shadow 0.1s ease;
  position: fixed;
  top: 0px;
  left: 0px;
}
html.dark input:-webkit-autofill,
html.dark input:-webkit-autofill:focus,
html.dark input:-webkit-autofill:hover {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
}

/* MENSAGENS TOAST COM E SEM ICONES */
.custom-toast-lucide.toast-container {
  width: auto;
  max-width: 300px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.custom-toast-lucide .toast-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--f7-bars-bg-color) 85%, var(--f7-color-primary)),
    color-mix(in srgb, var(--f7-bars-bg-color) 70%, var(--f7-theme-color-shade))
  );
  color: var(--f7-text-color);
  border-radius: 15px;
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-weight: 500;
  min-width: 200px;
  text-align: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  cursor: pointer;
}
.custom-toast-lucide .toast-message {
  line-height: 1.4;
}
.custom-toast-lucide .lucide-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 5px;
  color: var(--f7-text-color);
}
.custom-toast-lucide .lucide-icon-container svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1;
}
.custom-toast-right.toast.toast-bottom {
  left: auto !important;
  right: 16px !important;
  transform: translate(0, 0) !important;
}
@keyframes toast-tada {
  0% { transform: scale(1); }
  10%, 20% { transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% { transform: scale(1.05) rotate(3deg); }
  40%, 60%, 80% { transform: scale(1.05) rotate(-3deg); }
  100% { transform: scale(1); }
}
.toast-content-wrapper.tada {
  animation: toast-tada 0.8s ease;
}
.toast-progress-bar {
  position: absolute;
  top: 6px;
  left: 8px;
  right: 8px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}
.toast {
  background: none;
  box-shadow: none;
}

/* LAZY LOADING - NÃO TENHO CERTEZA SE FAZ FALTA */
img.anim_img{transition:all .5s ease-in-out;}
img.anim_img.lazy{opacity:0;filter:blur(10px);transform:scale(0.95);}
img.anim_img:not(.lazy){opacity:1;filter:blur(0);transform:scale(1);}

/* PASSWORD TOGGLE VIEW/HIDDEN */
.password-toggle {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  z-index: 5;
}
.password-toggle .icon {
  width: 22px;
  height: 22px;
}

/* MESSAGEM DE CONFIRMAÇÃO */
.custom-toast-lucide.toast-container {
  width: auto;
  max-width: 300px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.custom-toast-lucide .toast-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--f7-bars-bg-color) 85%, var(--f7-color-primary)),
    color-mix(in srgb, var(--f7-bars-bg-color) 70%, var(--f7-theme-color-shade))
  );
  color: var(--f7-text-color);
  border-radius: 15px;
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-weight: 500;
  min-width: 200px;
  text-align: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  cursor: pointer;
}
.custom-toast-lucide .toast-message {
  line-height: 1.4;
}
.custom-toast-lucide .lucide-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 5px;
  color: var(--f7-text-color);
}
.custom-toast-lucide .lucide-icon-container svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1;
}
.custom-toast-right.toast.toast-bottom {
  left: auto !important;
  right: 16px !important;
  transform: translate(0, 0) !important;
}
.toast-content-wrapper.tada {
  animation: toast-tada 0.8s ease;
}
.toast-progress-bar {
  position: absolute;
  top: 6px;
  left: 8px;
  right: 8px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}
.toast {
  background: none;
  box-shadow: none;
}


/* --- 2. STYLES FOR CUSTOM CONFIRMATION DIALOG --- */
/* This creates a dialog that matches the toast aesthetic */

/* 2.1. Main Dialog Frame */
.custom-confirm-dialog.dialog {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--f7-bars-bg-color) 85%, var(--f7-color-primary)),
    color-mix(in srgb, var(--f7-bars-bg-color) 70%, var(--f7-theme-color-shade))
  );
  color: var(--f7-text-color);
  border-radius: 15px;
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.15);
  --f7-dialog-bg-color: transparent;
  --f7-dialog-box-shadow: none;
}

/* 2.2. Dialog Content Area (Icon & Message Layout) */
.custom-confirm-dialog .dialog-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* This centers the icon and text horizontally */
  padding: 24px 24px 20px 24px;
  box-sizing: border-box;
}
.custom-confirm-dialog .dialog-icon-container {
  width: 48px;
  height: 48px;
  margin-bottom: 16px; /* Increased space between icon and message */
}
.custom-confirm-dialog .dialog-icon-container svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}
/* The .dialog-title-text style has been removed */
.custom-confirm-dialog .dialog-message-text {
  font-size: 15px;
  font-weight: 500; /* Slightly bolder to stand out more without a title */
  line-height: 1.5;
  text-align: center;
  opacity: 0.9;
  max-width: 95%;
}

/* 2.3. Dialog Buttons Area */
.custom-confirm-dialog .dialog-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
  padding: 0 24px 24px 24px;
  box-sizing: border-box;
}
.custom-confirm-dialog .dialog-button {
  min-width: 100px;
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 600;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--f7-text-color);
  transition: background-color 0.2s ease;
  flex-grow: 1;
  flex-basis: 0;
}
.custom-confirm-dialog .dialog-button:active {
  background: rgba(255, 255, 255, 0.2);
}
.custom-confirm-dialog .dialog-button-bold {
  background: var(--f7-color-primary);
  color: #fff;
}
.custom-confirm-dialog .dialog-button-bold:active {
  background: var(--f7-theme-color-shade);
}

/* --- 3. KEYFRAME ANIMATIONS --- */
@keyframes toast-tada {
  0% { transform: scale(1); }
  10%, 20% { transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% { transform: scale(1.05) rotate(3deg); }
  40%, 60%, 80% { transform: scale(1.05) rotate(-3deg); }
  100% { transform: scale(1); }
}
.custom-confirm-dialog .dialog-message-text h3 {
  margin: 0 0 8px 0; /* Space below the title */
  font-size: 18px;
  font-weight: 600;
  text-transform:uppercase;
  line-height: 1.3;
  color: var(--f7-text-color); /* Ensure it uses the main text color */
}

.custom-confirm-dialog .dialog-message-text p {
  margin: 0;
  font-size: 15px;
  opacity: 0.9;
}









/* 4 PASSOS NOVO REGISTO */
.account-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.account-steps .step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--f7-text-color-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.account-steps .step.current {
  background-color: var(--f7-color-primary);
}

/* * OBRIGATÓRIO */
.must {
  color: var(--f7-color-primary);
  font-size: 20px;
}

/* CHECKBOX WITH ICONS */
.custom-checkbox-li {}
.custom-checkbox-li .custom-label-wrapper {
  display: flex;
  width: 100%;
  align-items: center; 
  cursor: pointer;
  -webkit-user-select: none; 
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0px;
  position: relative; 
  border-radius: var(--f7-input-outline-border-radius);
  overflow: hidden; 
}
.custom-checkbox-li .item-media {
  margin-left: 0px;
}
.custom-checkbox-li > input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
.custom-checkbox-li .icon-unchecked {
  display: inline-block;
}
.custom-checkbox-li .icon-checked {
  display: none;
}
.custom-checkbox-li > input[type="checkbox"]:checked ~ .custom-label-wrapper .icon-unchecked {
  display: none;
}
.custom-checkbox-li > input[type="checkbox"]:checked ~ .custom-label-wrapper .icon-checked {
  display: inline-block;
  color: var(--f7-color-primary);
}
.custom-checkbox-li .custom-label-wrapper .item-inner {
  padding-top: 0;
  padding-bottom: 0;
}
.custom-checkbox-li:has(input[type="checkbox"]:checked)::after {
  border-color: var(--f7-color-primary);
}

/* LOADING BUTTON DOTS */
.loading-button .loader-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
}
.loader-dots span {
  display: block;
  width: 0.3em;
  height: 0.3em;
  margin: 0 0.12em;
  background: currentColor;
  border-radius: 50%;
  animation: bounce 0.8s infinite ease-in-out both;
}
.loader-dots span:nth-child(1) { animation-delay: -0.32s; }
.loader-dots span:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40%           { transform: scale(1); }
}


/* MENU CONFIGURAÇÕES */
#config-menu {
  padding-left: 10px;
  padding-right: 10px;
}
#config-menu ul {
  margin: 0;
  padding: 0;
}
#config-menu ul li {
  margin: 3px 0;
  border-radius: 40px;
  background: var(--f7-card-bg-color);
  box-shadow: var(--f7-card-box-shadow);
  overflow: hidden;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
#config-menu ul li:active {
  transform: scale(0.98);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#config-menu .item-content {
  padding: 6px 12px;
  min-height: 30px;
}
#config-menu .item-inner {
  margin-left: 18px;
}
#config-menu .item-media {
  margin-left: 12px;
}

/* NAVBAR FADEIN ON SCROLL */
.navbar-transparent {
  background: transparent;
  box-shadow: none;
}
.navbar-bg {
  background: var(--f7-bars-bg-color);
  opacity: 0.95;
  transition: opacity 300ms ease;
  backdrop-filter: blur(8px);
}
.page-content {
  padding-top: var(--f7-navbar-height);
}
.navbar .navbar-inner .title {
  transition: opacity 300ms ease;
}
.navbar.navbar-transparent .navbar-inner .title {
  opacity: 1; 
}

/* MODAL ESCOLHE IDIOMA */
.sheet-modal.smart-select-sheet .item-media img {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}
.sheet-modal.smart-select-sheet.modal-in {
  margin: 0 auto !important;
  left: 12px !important;
  right: 12px !important;
  width: auto !important;
  max-width: calc(100% - 24px) !important;
  padding-top: 5px !important;
  border-top-left-radius: 40px !important;
  border-top-right-radius: 40px !important;
  box-sizing: border-box !important;
  max-height: none !important;
  height: auto !important;
}
.sheet-modal.smart-select-sheet.modal-in .sheet-modal-inner {
  padding: 0 12px !important;
  max-height: none !important;
}
.sheet-modal.smart-select-sheet.modal-in .sheet-modal-inner .page-content,
.sheet-modal.smart-select-sheet.modal-in .smart-select-list {
  padding: 0 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}
.sheet-modal.smart-select-sheet.modal-in .toolbar-top .toolbar-inner {
  padding: 0 20px 0 16px !important;
  display: flex !important;
  justify-content: space-between !important;
  text-transform: uppercase !important;
}
.sheet-modal.smart-select-sheet.modal-in .toolbar-top .toolbar-inner .right {
  margin-left: auto !important;
}

/* CARD STYLING */
.card {
  background: linear-gradient(
	to left,
	var(--f7-card-bg-color) 0%,
	color-mix(in srgb, var(--f7-card-bg-color) 75%, var(--card-fade-color)) 100%
  );
  margin:               16px;
  border-radius:        12px;
 /*overflow:             hidden; */
  transition:           box-shadow 0.3s ease, transform 0.3s ease;
}
.light  .card {
  box-shadow:           0 2px 8px rgba(0, 0, 0, 0.1);
}
.light  .card:hover {
  transform:            translateY(-2px);
  box-shadow:           0 4px 16px rgba(0, 0, 0, 0.15);
}
.dark .card {
  box-shadow:           0 2px 8px rgba(0, 0, 0, 0.5);
}
.dark .card:hover {
  transform:            translateX(2px);
  box-shadow:           0 4px 16px rgba(0, 0, 0, 0.7);
}
.card-header {
  padding: 20px;
  font-size: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.03), transparent);
  text-transform:uppercase;
}
.dark .card-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
}
.card-content {
  padding:              20px;
  font-size:            14px;
  line-height:          1.6;
  color:                inherit;
  opacity: 0.7;
}
.card-footer {
  padding: 10px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.dark .card-footer {
  border-top-color:     rgba(255,255,255,0.1);
}

.card-footer .link {
  padding:              8px 12px;
  border-radius: 6px;
  font-size:14px;
  text-transform:uppercase;
}

.card-outline {
	border-color: rgba(var(--f7-theme-color-rgb), 0.2) !important;
}
:root {
  --card-fade-color: white;
}
.dark {
  --card-fade-color: black;
}





/* SIDE BY SIDE BUTTON ICONS */
.plan-actions { display: flex; gap: 12px; }
.plan-actions .link {
width: 36px; height: 36px;
display: flex; align-items: center; justify-content: center;
background: var(--f7-card-background); border-radius: 50%;
transition: background 0.3s, color 0.3s;
}
.plan-actions .link:hover { background: var(--f7-color-primary); color: #fff; }

/* TOOLTIP INFOS */
.tooltip-icon {
  cursor: help;
  color: var(--f7-color-primary); /* matches your app theme */
  margin-left: 6px;
  vertical-align: middle;
}

/* SHEET MODAL TOP */
.custom-sheet {
  margin-left: 3%;
  margin-right: 3%;
  width: 94%;
}





.button-fill{
	background-color: var(--f7-color-primary) !important;
}
.tema_font {
	color: var(--f7-color-primary);
}





/* FONTES E TIPOS DE LETRA */
.upper_case {
	text-transform:uppercase;
}
.texto30 {
	font-size:30px;
	text-transform:uppercase;
	color: var(--f7-color-primary);
}
.texto16 {
	font-size:14px;
	text-transform:uppercase;
	opacity:0.5;
}
.texto18 {
	font-size:18px;
	text-transform:uppercase;
}
.texto20 {
	font-size:20px;
	text-transform:uppercase;
	color: var(--f7-color-primary);
	line-height:22px;
}
.texto14 {
	font-size:14px;
	opacity:0.7;
	line-height:18px;
}
.texto11 {
	font-size:11px;
	opacity:0.7;
	line-height:14px;
}
.texto10 {
	font-size:10px;
	opacity:0.5;
	line-height:14px;
	text-transform:uppercase;
}
.texto35 {
  font-size: 35px;
  text-transform: uppercase;
  position:absolute; 
  top:15px; 
  z-index:100; 
  width:100%;
  line-height:38px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;          
  -webkit-text-stroke-width: 1px; 
  -webkit-text-stroke-color: rgba(0,0,0,0.8);
  color: #fff;                  
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.7));
}
.dark .texto35 {
  -webkit-text-stroke-color: rgba(255,255,255,0.8);
  color: #000;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.7));
}
.texto_msg {
	font-size:20px;
	opacity:0.6;
	text-transform:uppercase;
}

/* MESSAGE WITH TEXT OVER IMAGE */
 .msg-image-container {
	margin-top:20px;
	position: relative;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}
.msg-image-container img {
	display: block;
	width: 100%;
	height: auto;
	opacity:0.1;
}
.msg-text-overlay {
	position: absolute;
	top: 50%;
	left: 50%; 
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 60vw;
	line-height:30px;
	text-align: center;
	font-size:16px;
	text-transform:uppercase;
}

/* NO TEXT SELECTION ON EVERY PAGE */
body {
	user-select: none;
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none;    /* Firefox */
	-ms-user-select: none;     /* IE10+ */
}
/* NO IMAGE SELECTION ON PAGE */
img {
  -webkit-user-drag: none;
  user-drag: none;
}

.item-header {
	opacity:0.5 !important;
}

/* FLASH ICONS */
@keyframes f7-flash {
  0%, 50%, 100% { opacity: 1; }
  25%, 75%     { opacity: 0; }
}
.icon-flash {
  animation: f7-flash 1s ease-in-out infinite;
}

.icon_align{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.icon_align_sm{
  display:inline-flex;
  align-items:center;
}

.icon_alert {
	width:40px;
	height:40px;
	stroke-width:0.3; 
	transform: rotate(-45deg);
}
.icon_other {
	width:26px;
	height:26px;
	stroke-width:0.5; 
}

/* FADE IN CONTENT */
.fade_in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}
.fade_in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ICON FILL AND SHAKE */
.icon_fill {
  color: var(--f7-color-primary);
  fill: currentColor;
}
@keyframes thumb-press {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.like_anim {
  transform-origin: bottom left;
  animation: thumb-press 0.6s ease-out;
}

.rounded_top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: block;
}
.rounded_bottom {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: block;
}

/* IMPUT BOXES OUTLINE */
.item-input-outline {
	opacity:0.7;
}

/* LIST ITEMS */
.card_list {
	margin-top:5px !important;
	margin-bottom:5px !important;
	--f7-card-border-radius: 12px;
}
.tit_list {
	padding-top:1px;
	padding-bottom:1px;
	text-transform:uppercase;
	white-space: nowrap; 
	overflow: hidden; 
	text-overflow: ellipsis;
}
.text_list {
	min-width: 0;
}
.foto_frame_list {
	padding:3px !important;
	width: 65px;
	height: 65px;
	overflow: hidden;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
.foto_list {
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.link_list {
	padding:0px !important;
	border-radius: var(--f7-card-border-radius);
	overflow: hidden;
}
.list .item-inner::after {
  opacity: 0.3;
  height: 1px;
}
hr {
    border: 0;
    height: 1px; /* Sets the thickness */
    margin: 20px 0; /* Replaces your padding-top/bottom */
    
    /* Light Mode: Very subtle black opacity */
    background-color: rgba(0, 0, 0, 0.08); 
}

/* Dark Mode: Very subtle white opacity */
.dark hr,
.theme-dark .hr-discrete {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme_text_color {
	color:#FF0000;
}

.t_10{font-size:10px}.t_11{font-size:11px}.t_12{font-size:12px}.t_13{font-size:13px}.t_14{font-size:14px}.t_15{font-size:15px}.t_16{font-size:16px}.t_17{font-size:17px}.t_18{font-size:18px}.t_19{font-size:19px}.t_20{font-size:20px}.t_21{font-size:21px}.t_22{font-size:22px}.t_23{font-size:23px}.t_24{font-size:24px}.t_25{font-size:25px}.t_26{font-size:26px}.t_27{font-size:27px}.t_28{font-size:28px}.t_29{font-size:29px}.t_30{font-size:30px}.t_u{text-transform:uppercase}.t_05{opacity:.5}.t_06{opacity:.6}.t_07{opacity:.7}.t_08{opacity:.8}.t_09{opacity:.9}.m_0{margin:0!important}.m_1{margin:.25rem!important}.m_2{margin:.5rem!important}.m_3{margin:1rem!important}.m_4{margin:1.5rem!important}.m_5{margin:3rem!important}.m_auto{margin:auto!important}.mt_0{margin-top:0!important}.mt_1{margin-top:.25rem!important}.mt_2{margin-top:.5rem!important}.mt_3{margin-top:1rem!important}.mt_4{margin-top:1.5rem!important}.mt_5{margin-top:3rem!important}.mt_auto{margin-top:auto!important}.mb_0{margin-bottom:0!important}.mb_1{margin-bottom:.25rem!important}.mb_2{margin-bottom:.5rem!important}.mb_3{margin-bottom:1rem!important}.mb_4{margin-bottom:1.5rem!important}.mb_5{margin-bottom:3rem!important}.mb_auto{margin-bottom:auto!important}.ml_0{margin-left:0!important}.ml_1{margin-left:.25rem!important}.ml_2{margin-left:.5rem!important}.ml_3{margin-left:1rem!important}.ml_4{margin-left:1.5rem!important}.ml_5{margin-left:3rem!important}.ml_auto{margin-left:auto!important}.mr_0{margin-right:0!important}.mr_1{margin-right:.25rem!important}.mr_2{margin-right:.5rem!important}.mr_3{margin-right:1rem!important}.mr_4{margin-right:1.5rem!important}.mr_5{margin-right:3rem!important}.mr_auto{margin-right:auto!important}.mx_0{margin-right:0!important;margin-left:0!important}.mx_1{margin-right:.25rem!important;margin-left:.25rem!important}.mx_2{margin-right:.5rem!important;margin-left:.5rem!important}.mx_3{margin-right:1rem!important;margin-left:1rem!important}.mx_4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx_5{margin-right:3rem!important;margin-left:3rem!important}.mx_auto{margin-right:auto!important;margin-left:auto!important}.my_0{margin-top:0!important;margin-bottom:0!important}.my_1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my_2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my_3{margin-top:1rem!important;margin-bottom:1rem!important}.my_4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my_5{margin-top:3rem!important;margin-bottom:3rem!important}.my_auto{margin-top:auto!important;margin-bottom:auto!important}.p_0{padding:0!important}.p_1{padding:.25rem!important}.p_2{padding:.5rem!important}.p_3{padding:1rem!important}.p_4{padding:1.5rem!important}.p_5{padding:3rem!important}.pt_0{padding-top:0!important}.pt_1{padding-top:.25rem!important}.pt_2{padding-top:.5rem!important}.pt_3{padding-top:1rem!important}.pt_4{padding-top:1.5rem!important}.pt_5{padding-top:3rem!important}.pb_0{padding-bottom:0!important}.pb_1{padding-bottom:.25rem!important}.pb_2{padding-bottom:.5rem!important}.pb_3{padding-bottom:1rem!important}.pb_4{padding-bottom:1.5rem!important}.pb_5{padding-bottom:3rem!important}.pl_0{padding-left:0!important}.pl_1{padding-left:.25rem!important}.pl_2{padding-left:.5rem!important}.pl_3{padding-left:1rem!important}.pl_4{padding-left:1.5rem!important}.pl_5{padding-left:3rem!important}.pr_0{padding-right:0!important}.pr_1{padding-right:.25rem!important}.pr_2{padding-right:.5rem!important}.pr_3{padding-right:1rem!important}.pr_4{padding-right:1.5rem!important}.pr_5{padding-right:3rem!important}.px_0{padding-right:0!important;padding-left:0!important}.px_1{padding-right:.25rem!important;padding-left:.25rem!important}.px_2{padding-right:.5rem!important;padding-left:.5rem!important}.px_3{padding-right:1rem!important;padding-left:1rem!important}.px_4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px_5{padding-right:3rem!important;padding-left:3rem!important}.py_0{padding-top:0!important;padding-bottom:0!important}.py_1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py_2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py_3{padding-top:1rem!important;padding-bottom:1rem!important}.py_4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py_5{padding-top:3rem!important;padding-bottom:3rem!important}