/* Furry Latino */

:root {
	--fnc-bg: #0a0810;
	--fnc-bg-elevated: #16121f;
	--fnc-bg-elevated-2: #1e1830;
	--fnc-bg-input: #12101a;
	--fnc-border: rgba(255, 255, 255, 0.09);
	--fnc-border-strong: rgba(255, 255, 255, 0.14);
	--fnc-accent: #8b5cf6;
	--fnc-accent-hover: #a78bfa;
	--fnc-accent-ink: #ffffff;
	--fnc-accent-a: #ddd6fe;
	--fnc-accent-soft: rgba(139, 92, 246, 0.22);
	--fnc-accent-glow: rgba(167, 139, 250, 0.45);
	--fnc-accent-neon: #e879f9;
	--fnc-accent-cyber: #22d3ee;
	--fnc-text: #f2f2f7;
	--fnc-text-muted: rgba(235, 235, 245, 0.72);
	--fnc-radius-sm: 10px;
	--fnc-radius-md: 14px;
	--fnc-radius-lg: 20px;
	--fnc-radius-pill: 999px;
	--fnc-shadow-card:
		0 8px 32px rgba(0, 0, 0, 0.42),
		0 0 0 1px rgba(255, 255, 255, 0.05) inset,
		0 0 48px rgba(139, 92, 246, 0.06);
	--fnc-nav-accent: var(--fnc-accent);
	--fnc-nav-accent-soft: var(--fnc-accent-a);
	--fnc-paws-blue: #2d8cff;
	--fnc-paws-blue-strong: #1a6fd4;
	--fnc-header-height: 5rem;
	/* Antes 10rem: dejaba un vacÃƒÂ­o enorme bajo los links del footer. */
	--fnc-footer-height: 6.25rem;
	--fnc-main-min-height: calc(100vh - var(--fnc-header-height) - var(--fnc-footer-height));
	--fnc-contrast: #f98517;
}

html {
	min-height: 100%;
}

html, body {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	position: relative;
	padding: 0px;
	margin: 0px;
    font-size: 16px;
	color: var(--fnc-text);
	-webkit-font-smoothing: antialiased;
}

html {
	background: var(--fnc-bg);
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background:
		radial-gradient(ellipse 120% 80% at 50% -18%, rgba(139, 92, 246, 0.11) 0%, transparent 58%),
		radial-gradient(ellipse 70% 55% at 100% 100%, rgba(139, 92, 246, 0.06) 0%, transparent 52%),
		radial-gradient(ellipse 55% 45% at 0% 85%, rgba(124, 58, 237, 0.07) 0%, transparent 48%),
		var(--fnc-bg);
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a { text-decoration: none; color: #EAEAEA; }
hr { border-top: 1px solid #CCC; }
h1, h2, h3, h4 { padding: 0; margin: 0; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
.txt-right { text-align: right; }
.txt-left { text-align: left; }
.txt-center { text-align: center; }
.txt-justify { text-align: justify; }
.txt-success { color: #a5fdbf; }
.txt-error { color: #fda5a5; }
.msg-info, .msg-success, .msg-warning, .msg-error { padding: 1rem 1rem 1rem 3.5rem; border-radius: .5rem; text-align: left; }  
.msg-info::before, .msg-success::before, .msg-warning::before, .msg-error::before { font-family: "Font Awesome 7 Free"; font-weight: 900; font-size: 1.5rem; margin-left: -3.5rem; padding: 1rem; }  
.msg-info::before { content: "\f05a"; } 
.msg-success::before { content: "\f058"; } 
.msg-warning::before { content: "\f071"; }  
.msg-error::before { content: "\f06a"; }  
.msg-info { background: #009ddb; color: #020014; }
.msg-success { background: #00db6e; color: #001408; }
.msg-warning { background: #dbc000; color: #131400; }
.msg-error { background: #db0000; color: #140000; }
span.success:not(:empty) { color: #00db6e; padding: .2rem; text-align: left; display: flex; }
span.warning:not(:empty) { color: #dbc000; padding: .2rem; text-align: justify; display: flex; text-align: justify; align-items: center; }
span.warning i { margin-right: .5rem; }
span.error:not(:empty) { color: #db3300; padding: .2rem; text-align: left; display: flex; }
a:Hover { color: var(--fnc-accent-hover); }
.hidden { display: none !important; }

/**/

body > #base-wrapper {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	width: 100%;
}

#base-header {
	position: fixed;
	z-index: 1000000;
	display: flex;
	flex-direction: row;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	padding: 0.55rem 2rem;
	background: linear-gradient(
		180deg,
		rgba(28, 28, 32, 0.94) 0%,
		rgba(14, 14, 16, 0.9) 100%
	);
	backdrop-filter: blur(20px) saturate(1.15);
	-webkit-backdrop-filter: blur(20px) saturate(1.15);
	border-bottom: 1px solid var(--fnc-border);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 10px 30px rgba(0, 0, 0, 0.22);
	color: var(--fnc-text);
	width: 100%;
	gap: 0.75rem 1rem;
	overflow: visible;
}

#base-header .menu--responsive {
	display: none;
	flex: 0 0 auto;
	justify-content: center;
	align-items: center;
	width: 4rem;
    height: 4rem;
	font-size: 3rem;
}

#base-header .logo {
	flex: 0 0 auto;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 8rem;
    height: 4rem;
}

#base-header  .menubox--responsive {
	flex: 1;
	display: flex;
}

#base-header .menubox-overlay {
	flex: 1;
	display: none;
}

#base-header .options {
	flex: 1 1 12rem;
	min-width: 0;
	max-width: 26rem;
	display: flex;
	align-items: center;
}

#base-header .options .fnc-search {
	width: 100%;
}

#base-header .menu {
	flex: 1;
}

#base-header .additional {
	flex: 1;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.65rem;
	text-align: right;
}

#base-header .additional:empty {
	display: none;
}

#base-header .additional .fnc-wallet-balance {
	flex: 0 0 auto;
	margin-right: 0.35rem;
}

#base-header .additional .fnc-notifications {
	flex: 0 0 auto;
	margin-right: 1.35rem;
}

#base-header .menubox--responsive {
	gap: 0 1rem;
}

#base-header .control {
	flex: 0 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 0.65rem;
}

#base-header .menubox-userbar {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex: 0 0 auto;
	gap: 0.65rem;
}

#base-header .menubox-userbar .control,
#base-header .menubox-userbar .additional {
	flex: 0 0 auto;
	border: 0;
	padding: 0;
}

#base-header .menubox-userbar .additional {
	justify-content: flex-start;
	margin-right: 0.35rem;
}

#base-header .menubox-userbar .additional .fnc-notifications {
	margin-right: 0;
}

#base-content {
	position: relative;
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	width: 100%;
	/* padding (no margin): evita scroll fantasma con header fijo */
	padding-top: var(--fnc-header-height);
	box-sizing: border-box;
}

/* JSON navigation transition */
#fnc-navegation {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	flex: 1 0 auto;
	min-height: var(--fnc-main-min-height);
	isolation: isolate;
}

#fnc-navegation.fnc-navegation--loading > :not(.fnc-page-transition) {
	filter: blur(6px) saturate(0.88);
	opacity: 0.42;
	pointer-events: none;
	user-select: none;
	transform: scale(0.992);
	transition:
		filter 0.32s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

#fnc-navegation.fnc-navegation--revealed > :not(.fnc-page-transition) {
	animation: fnc-page-reveal 0.42s cubic-bezier(0.2, 0, 0, 1) both;
}

@keyframes fnc-page-reveal {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fnc-page-transition {
	position: fixed;
	top: var(--fnc-header-height, 5rem);
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999999;
	pointer-events: all;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.22s ease;
}

.fnc-page-transition.is-active {
	opacity: 1;
}

.fnc-page-transition__scrim {
	position: absolute;
	inset: 0;
	background: rgba(8, 8, 10, 0.52);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.fnc-page-transition__progress {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	max-width: 100%;
	height: 3px;
	width: 38%;
	border-radius: 0 2px 2px 0;
	background: linear-gradient(
		90deg,
		var(--fnc-nav-accent) 0%,
		var(--fnc-nav-accent-soft) 55%,
		var(--fnc-nav-accent) 100%
	);
	box-shadow: 0 0 20px rgba(124,58,237,0.5);
	animation: fnc-nav-progress 1.15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.fnc-page-transition__spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0;
	border: none;
	border-radius: 0;
	animation: none;
	transform: translate(-50%, -50%);
}

.fnc-page-transition__spinner svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.fnc-page-transition__spinner .fnc-page-transition__icon {
	transform-origin: center;
	animation: fnc-loader-fox-breathe 1.2s ease-in-out infinite;
}

.fnc-page-transition__spinner .fnc-loader-outline {
	fill: none;
	stroke: var(--fnc-nav-accent);
	stroke-width: 2.6;
	stroke-linecap: round;
	stroke-linejoin: round;
	animation: fnc-loader-fox-pulse 1.2s ease-in-out infinite;
}


@keyframes fnc-nav-progress {
	0% {
		transform: translateX(-120%);
		opacity: 0.35;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translateX(280%);
		opacity: 0.35;
	}
}

@keyframes fnc-loader-fox-pulse {
	0%,
	100% {
		opacity: 0.4;
	}
	50% {
		opacity: 1;
	}
}

@keyframes fnc-loader-fox-breathe {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.06);
	}
}

@media (prefers-reduced-motion: reduce) {
	#fnc-navegation.fnc-navegation--loading > :not(.fnc-page-transition) {
		filter: none;
		transform: none;
		transition: opacity 0.2s ease;
	}

	#fnc-navegation.fnc-navegation--revealed > :not(.fnc-page-transition) {
		animation: none;
	}

	.fnc-page-transition__progress,
	.fnc-page-transition__spinner .fnc-page-transition__icon,
	.fnc-page-transition__spinner .fnc-loader-outline {
		animation: none;
	}

	.fnc-page-transition__spinner .fnc-loader-outline {
		opacity: 0.95;
	}

	.fnc-page-transition__progress {
		width: 100%;
		opacity: 0.85;
	}
}

#base-footer
{
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: auto;
	flex: 0 0 auto;
	background: linear-gradient(
		0deg,
		rgba(8, 8, 10, 1) 0%,
		rgba(18, 18, 22, 0.98) 100%
	);
	border-top: 1px solid var(--fnc-border);
	color: var(--fnc-text-muted);
	width: 100%;
	min-height: var(--fnc-footer-height);
	padding: 0.85rem 0;
	box-sizing: border-box;
}

#base-footer .footer-left,
#base-footer .footer-middle,
#base-footer .footer-right
{

	justify-content: center;
	align-items: center;
	display: flex;
}

#base-footer .footer-right
{
	z-index: 100000;
}

#base-footer .footer-right,
#base-footer .footer-left
{
	display: flex;
	flex: 0 0 auto;
	color: var(--fnc-text-muted);
	width: 15rem;
	flex-direction: column;
}

#base-footer .footer-middle
{
	flex: 1;
	color: var(--fnc-text-muted);
}

#base-footer nav.footer-menu ul a {
	color: rgba(235, 235, 245, 0.52);
	transition: color 0.18s ease;
}

#base-footer nav.footer-menu ul a:hover {
	color: var(--fnc-accent);
}

.icon-logo {
	width: 7rem;
	height: 3.75rem;
	background-image: url(../images/icon-logo.png);
    background-size: contain;
    background-position: center center;
	background-repeat: no-repeat;
}

.copyright {
	padding: 0.25rem;
	width: 10rem;
	color: rgba(124,58,237,0.72);
	font-weight: 600;
	font-size: 0.88rem;
	letter-spacing: 0.02em;
}

#overlay
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	z-index: 8;
	display: none;
}

/**/


nav.header-menu {
	padding: 1rem 0rem;
	font-size: 1.1rem;
}

nav.header-menu ul,
nav.control-menu ul,
nav.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav.footer-menu ul {
	flex-wrap: wrap;
	justify-content: center;
}

nav.header-menu ul,
nav.control-menu ul {
  gap: .20rem;
}

nav.header-menu li,
nav.control-menu li,
nav.footer-menu li {
  position: relative;
  flex: 0 0 auto;
}

nav.header-menu li a,
nav.control-menu li a,
nav.footer-menu li a {
  text-decoration: none;
  color: #EAEAEA;
  transition: background 0.2s ease, color 0.2s ease;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

nav.footer-menu ul > li > a:last-child {
  border-right: 0;
}

nav.header-menu li a:hover,
nav.control-menu li a:hover {
  background: var(--fnc-accent);
}

nav.footer-menu li a:hover {
	color: var(--fnc-accent-hover);
}

nav.header-menu li ul,
nav.control-menu li ul,
nav.footer-menu li ul {
  display: none;
  position: absolute;
  flex-direction: column;
  background: #222;
  padding: 0.5rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 10;
  min-width: max-content;
  width: auto;
}

nav.header-menu li:hover > ul,
nav.control-menu li:hover > ul,
nav.footer-menu li:hover > ul {
  display: flex;
}

nav.header-menu ul > li > ul,
nav.control-menu ul > li > ul {
  top: 100%;
  left: 0;
}

nav.footer-menu ul > li > ul {
	bottom: 100%;
	left: 0;
}

nav.header-menu ul ul ul,
nav.control-menu ul ul ul {
  top: 100;
  left: 0%;
}

nav.footer-menu ul ul ul {
  bottom: 0;
  left: 100%;
}

/**/

.s2 {
  margin-right: 0.5rem;
}

.content {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 2rem;
	flex: 1 0 auto;
	min-height: var(--fnc-main-min-height);
	gap: 1rem;
	box-sizing: border-box;
}

.content.top {
    align-items: flex-start;
}

.box {
	display: flex;
	flex-direction: column;
	padding: 1.5rem 1.75rem;
	background: var(--fnc-bg-elevated);
	gap: 1.25rem;
	border-radius: var(--fnc-radius-lg);
	border: 1px solid var(--fnc-border);
	box-shadow: var(--fnc-shadow-card);
}

.box > h2 {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 1.65rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.2;
	color: var(--fnc-text);
}

.box > h2 i {
	color: var(--fnc-contrast);
	font-size: 1.35rem;
}

.box.adaptable {
	padding: .2rem;
	background: transparent;
}

.box.full {
	width: 100%;
}

.box.half {
	width: 50%;
}

.box.three-quarters {
	width: 75%;
}

.box.one-quarters {
	width: 25%;
}

.box li, .box p {
	text-align: justify;
	margin: 0.5rem 0;
	color: var(--fnc-text-muted);
	line-height: 1.55;
}

.box .box-row:empty {
	display: none;
}

.box .box-row {
	flex: 1;
	padding: 0 1rem;
}

.box a {
	color: var(--fnc-accent-a, #c4b5fd);
}

.box a:Hover {
	color: var(--fnc-accent-ink, #fff);
}

/**/

form {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

input[type=submit],
input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=number],
input[type=url],
input[type=tel],
button,
select,
textarea {
	flex: 1;
	font-size: 1rem;
	padding: 0.95rem 1.1rem;
	color: var(--fnc-text);
	border-radius: var(--fnc-radius-sm);
	border: 1px solid var(--fnc-border-strong);
	background: var(--fnc-bg-input);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=url]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
	border-color: rgba(124,58,237,0.45);
	box-shadow: 0 0 0 3px var(--fnc-accent-soft);
}

select {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ij48cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNNyAxMGw1IDUgNS01eiIvPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
	outline: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #EAEAEA;
    transition: background-color 5000s ease-in-out 0s;
	-webkit-box-shadow: 0 0 0 2px #222, 0 0 0px 1000px #222 inset !important;
    box-shadow: inset 0 0 20px 20px #222;
	border: 1px solid #222 !important;
}

input:focus:not([type="checkbox"]):not([type="radio"]) {
    outline: none;
    box-shadow: 0 0 0 2px #222, inset 0 0 20px 20px #222;
}

input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
select,
textarea {
	width: 100%;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline-width: 0;
}

input[type="radio"],
input[type="checkbox"],
input[type="submit"],
.button {
	flex: 1;
	display: inline-block;
}

input[type=submit]:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn),
input[type=button]:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn),
.button:not(.section):not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn):not(.fnc-notifications__trigger):not(.fnc-notifications__mark-all):not(.fnc-notifications__tab):not(.fnc-wallet-tabs__tab):not(.fnc-search__clear):not(.fnc-groups-members__role-tab):not(.fnc-groups-members__search-clear):not(.profile-follow-btn):not(.support-search-btn):not(.billing-pack-card__buy):not(.fnc-gallery__control-btn):not(.fnc-comments__submit):not(.fnc-comments__delete):not(.fnc-comments__more):not(.fnc-comments__reply-btn):not(.fnc-comments__view-replies-btn):not(.fnc-comments__replies-more):not(.fnc-comments__menu-trigger):not(.fnc-comments__menu-item):not(.fnc-share__menu-item):not(.fnc-share__trigger),
button:not(.section):not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn):not(.fnc-wallet-pay-confirm__close):not(.fnc-wallet-pay-confirm__cancel):not(.fnc-notifications__trigger):not(.fnc-notifications__mark-all):not(.fnc-notifications__tab):not(.fnc-wallet-tabs__tab):not(.fnc-search__clear):not(.fnc-groups-members__role-tab):not(.fnc-groups-members__search-clear):not(.profile-follow-btn):not(.support-search-btn):not(.news-search__btn):not(.billing-pack-card__buy):not(.fnc-gallery__control-btn):not(.fnc-comments__submit):not(.fnc-comments__delete):not(.fnc-comments__more):not(.fnc-comments__reply-btn):not(.fnc-comments__view-replies-btn):not(.fnc-comments__replies-more):not(.fnc-comments__menu-trigger):not(.fnc-comments__menu-item):not(.fnc-share__menu-item):not(.fnc-mentions-dropdown__item):not(.fnc-wall__tab):not(.fnc-wall__vis-trigger):not(.fnc-wall__vis-opt):not(.fnc-wall__filter-trigger):not(.fnc-wall__filter-opt):not(.fnc-wall__more-btn):not(.fnc-wall__post-delete):not(.fnc-wall__preview-remove):not(.fnc-wall__preview-move):not(.fnc-wall__post-menu-trigger):not(.fnc-wall__post-menu-item):not(.fnc-likes__wall-btn):not(.fnc-likes__wall-count):not(.fnc-wall__post-more-toggle):not(.fnc-emoji-trigger):not(.fnc-emoji-pop__cell):not(.fnc-emoji-pop__tab):not(.fnc-sticker-pop__cell):not(.fnc-sticker-pop__pack):not(.fnc-sticker-pop__mine):not(.fnc-comments__sticker-open):not(.fnc-wall__viewer-close):not(.fnc-wall__viewer-nav):not(.fnc-share__trigger):not(.fnc-wgt__carousel-btn):not(.fnc-chat__reply-quote):not(.fnc-chat__att):not(.fnc-chat__reply-draft-close):not(.fnc-chat-ctx__item):not(.fnc-chat__msg-fail-act):not(.fnc-chat__item):not(.fnc-chat__search-hit):not(.fnc-chat__search-clear):not(.fnc-chat__icon-btn):not(.fnc-chat__btn):not(.fnc-chat__send):not(.fnc-chat__new-msgs):not(.fnc-chat__more-item):not(.fnc-chat__media-tab):not(.fnc-chat__emoji-cat):not(.fnc-chat__pending-remove):not(.fnc-chat__link-draft-close):not(.fnc-chat-lightbox__close):not(.fnc-chat-lightbox__nav):not(.fnc-chat__back):not(.fnc-chat__more-toggle):not(.fnc-chat__media-toggle):not(.fnc-chat__sticker-pack-link):not(.fnc-chat__sticker-pack-tab):not(.fnc-chat__sticker-settings-back):not(.fnc-chat__sticker-settings-tab):not(.fnc-chat__sticker-btn):not(.fnc-chat__sticker-add-btn):not(.fnc-chat__sticker-add-search-btn):not(.fnc-chat__sticker-add-cover):not(.fnc-chat__sticker-manage-remove):not(.fnc-chat__sticker-open):not(.fnc-chat__pack-modal-x):not(.fnc-chat__pack-modal-list-btn):not(.fnc-chat__pack-modal-menu-trigger):not(.fnc-chat__pack-modal-menu-item):not(.fl-studio-save):not(.fl-studio-linkbtn):not(.fl-studio-opt__remove):not(.fl-atelier__btn):not(.fnc-video__compose-btn):not(.fnc-video__compose-reel-opt):not(.fnc-video__watch-desc-toggle):not(.fnc-video__compose-x):not(.fnc-video__compose-emoji):not(.fnc-video__card-delete):not(.fnc-video__card-menu-trigger):not(.fnc-video__card-menu-item):not(.fnc-video__action):not(.fnc-reels__mute):not(.fnc-reels__action):not(.fnc-reels__more-item):not(.fnc-reels__follow):not(.fnc-reels__sheet-close):not(.fnc-reels__back):not(.fnc-reels__play-hit):not(.fnc-video__pill):not(.fnc-video__seek-submit):not(.fnc-wall__video-open):not(.fnc-video__like-count):not(.fnc-video__autoplay):not(.fnc-video__ended-replay):not(.fnc-wall__post-tax-more):not(.fnc-favorites__star-btn):not(.fnc-favorite-group__toggle) {
	border-radius: var(--fnc-radius-pill);
	color: var(--fnc-accent-ink) !important;
	padding: 0.9rem 2.25rem;
	cursor: pointer;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	background: linear-gradient(180deg, #6433b4 0%, var(--fnc-accent) 48%, #5b21b6 100%);
	border: none;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.22) inset,
		0 4px 18px rgba(124,58,237,0.32);
	transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button.section {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 0;
	padding: 0.65rem 1.35rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--fnc-accent-a) !important;
	background: var(--fnc-accent-soft);
	border: 1px solid rgba(124,58,237,0.32);
	border-radius: var(--fnc-radius-pill);
	box-shadow: none;
	cursor: pointer;
}

.button.section:hover {
	background: rgba(124,58,237,0.22);
	filter: none;
	transform: none;
}

.button.section.active {
	background: rgba(124,58,237,0.24);
	border-color: rgba(124,58,237,0.45);
}

.button.section.disabled,
.button.section:disabled {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--fnc-border);
	color: var(--fnc-text-muted) !important;
	box-shadow: none;
	filter: none;
	transform: none;
	opacity: 0.72;
	cursor: not-allowed;
	pointer-events: none;
}

.button.section.disabled:hover,
.button.section:disabled:hover {
	background: rgba(255, 255, 255, 0.06);
	box-shadow: none;
	filter: none;
	transform: none;
}

input[type=submit]:disabled:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn),
input[type=button]:disabled:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn),
.button.disabled:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn),
button:disabled:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn):not(.fnc-emoji-trigger),
.button:disabled:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn):not(.fnc-emoji-trigger) {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--fnc-border);
	color: var(--fnc-text-muted) !important;
	font-weight: 600;
	cursor: not-allowed;
	opacity: 0.72;
	box-shadow: none;
	filter: none;
	transform: none;
}

input[type=submit]:disabled.onloader:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn),
input[type=button]:disabled.onloader:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn),
.button.disabled.onloader:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn),
button.disabled.onloader:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn),
button:disabled.onloader:not(.section):not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn):not(.fnc-wallet-pay-confirm__close):not(.fnc-wallet-pay-confirm__cancel):not(.fnc-notifications__trigger):not(.fnc-notifications__mark-all):not(.fnc-notifications__tab):not(.fnc-wallet-tabs__tab):not(.fnc-search__clear):not(.fnc-groups-members__role-tab):not(.fnc-groups-members__search-clear):not(.profile-follow-btn):not(.support-search-btn):not(.authplus-login-switch__btn):not(.authplus-login-panel__send):not(.billing-pack-card__buy):not(.fnc-gallery__control-btn):not(.fnc-comments__submit):not(.fnc-comments__delete):not(.fnc-comments__more):not(.fnc-comments__reply-btn):not(.fnc-comments__view-replies-btn):not(.fnc-comments__replies-more):not(.fnc-comments__menu-trigger):not(.fnc-comments__menu-item):not(.fnc-share__menu-item),
button[type=submit]:disabled.onloader:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn) {
    background-image: url(../images/loader.gif);
    background-size: 1.35rem;
    background-position: center left 0.85rem;
    background-repeat: no-repeat;
    padding-left: 2.35rem;
}

input[type=submit]:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn):hover,
.button:not(.section):not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn):not(.fnc-notifications__trigger):not(.fnc-notifications__mark-all):not(.fnc-notifications__tab):not(.fnc-wallet-tabs__tab):not(.fnc-search__clear):not(.fnc-groups-members__role-tab):not(.fnc-groups-members__search-clear):not(.profile-follow-btn):not(.support-search-btn):not(.billing-pack-card__buy):not(.fnc-gallery__control-btn):not(.fnc-comments__submit):not(.fnc-comments__delete):not(.fnc-comments__more):not(.fnc-comments__reply-btn):not(.fnc-comments__view-replies-btn):not(.fnc-comments__replies-more):not(.fnc-comments__menu-trigger):not(.fnc-comments__menu-item):not(.fnc-share__menu-item):not(.fnc-share__trigger):hover,
button:not(.section):not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn):not(.fnc-wallet-pay-confirm__close):not(.fnc-wallet-pay-confirm__cancel):not(.fnc-notifications__trigger):not(.fnc-notifications__mark-all):not(.fnc-notifications__tab):not(.fnc-wallet-tabs__tab):not(.fnc-search__clear):not(.fnc-groups-members__role-tab):not(.fnc-groups-members__search-clear):not(.profile-follow-btn):not(.support-search-btn):not(.billing-pack-card__buy):not(.fnc-gallery__control-btn):not(.fnc-comments__submit):not(.fnc-comments__delete):not(.fnc-comments__more):not(.fnc-comments__reply-btn):not(.fnc-comments__view-replies-btn):not(.fnc-comments__replies-more):not(.fnc-comments__menu-trigger):not(.fnc-comments__menu-item):not(.fnc-share__menu-item):not(.fnc-mentions-dropdown__item):not(.fnc-wall__tab):not(.fnc-wall__vis-trigger):not(.fnc-wall__vis-opt):not(.fnc-wall__filter-trigger):not(.fnc-wall__filter-opt):not(.fnc-wall__more-btn):not(.fnc-wall__post-delete):not(.fnc-wall__preview-remove):not(.fnc-wall__preview-move):not(.fnc-wall__post-menu-trigger):not(.fnc-wall__post-menu-item):not(.fnc-likes__wall-btn):not(.fnc-likes__wall-count):not(.fnc-wall__post-more-toggle):not(.fnc-emoji-trigger):not(.fnc-emoji-pop__cell):not(.fnc-emoji-pop__tab):not(.fnc-sticker-pop__cell):not(.fnc-sticker-pop__pack):not(.fnc-sticker-pop__mine):not(.fnc-comments__sticker-open):not(.fnc-wall__viewer-close):not(.fnc-wall__viewer-nav):not(.fnc-share__trigger):not(.fnc-wgt__carousel-btn):not(.fnc-chat__reply-quote):not(.fnc-chat__att):not(.fnc-chat__reply-draft-close):not(.fnc-chat-ctx__item):not(.fnc-chat__msg-fail-act):not(.fnc-chat__item):not(.fnc-chat__search-hit):not(.fnc-chat__search-clear):not(.fnc-chat__icon-btn):not(.fnc-chat__btn):not(.fnc-chat__send):not(.fnc-chat__new-msgs):not(.fnc-chat__more-item):not(.fnc-chat__media-tab):not(.fnc-chat__emoji-cat):not(.fnc-chat__pending-remove):not(.fnc-chat__link-draft-close):not(.fnc-chat-lightbox__close):not(.fnc-chat-lightbox__nav):not(.fnc-chat__back):not(.fnc-chat__more-toggle):not(.fnc-chat__media-toggle):not(.fnc-chat__sticker-pack-link):not(.fnc-chat__sticker-pack-tab):not(.fnc-chat__sticker-settings-back):not(.fnc-chat__sticker-settings-tab):not(.fnc-chat__sticker-btn):not(.fnc-chat__sticker-add-btn):not(.fnc-chat__sticker-add-search-btn):not(.fnc-chat__sticker-add-cover):not(.fnc-chat__sticker-manage-remove):not(.fnc-chat__sticker-open):not(.fnc-chat__pack-modal-x):not(.fnc-chat__pack-modal-list-btn):not(.fnc-chat__pack-modal-menu-trigger):not(.fnc-chat__pack-modal-menu-item):not(.fnc-video__compose-btn):not(.fnc-video__compose-reel-opt):not(.fnc-video__watch-desc-toggle):not(.fnc-video__compose-x):not(.fnc-video__compose-emoji):not(.fnc-video__card-delete):not(.fnc-video__card-menu-trigger):not(.fnc-video__card-menu-item):not(.fnc-video__action):not(.fnc-reels__mute):not(.fnc-reels__action):not(.fnc-reels__more-item):not(.fnc-reels__follow):not(.fnc-reels__sheet-close):not(.fnc-reels__back):not(.fnc-video__pill):not(.fnc-video__seek-submit):not(.fnc-wall__video-open):not(.fnc-video__like-count):not(.fnc-video__autoplay):not(.fnc-video__ended-replay):not(.fnc-wall__post-tax-more):not(.fnc-favorites__star-btn):not(.fnc-favorite-group__toggle):hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.26) inset,
		0 8px 24px rgba(124,58,237,0.38);
}

input[type=submit]:disabled:hover:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn),
input[type=button]:disabled:hover:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn),
.button.disabled:hover:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn),
button:disabled:hover:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn):not(.fnc-emoji-trigger),
.button:disabled:hover:not(.fnc-wallet-pay-btn):not(.fnc-fiat-pay-btn):not(.fnc-emoji-trigger) {
	background: rgba(255, 255, 255, 0.06);
	color: var(--fnc-text-muted) !important;
	box-shadow: none;
	filter: none;
	transform: none;
}

.form-group {
  position: relative;
  margin: 2rem 0;
}

.form-group input::placeholder {
  color: transparent;
}

input:not([type="checkbox"]):not([type="radio"]) + label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #777;
  pointer-events: none;
  transition: all 0.2s ease;
}

input:not([type="checkbox"]):not([type="radio"]):focus + label,
input:not([type="checkbox"]):not([type="radio"]):not(:placeholder-shown) + label,
input:-webkit-autofill + label {
  top: -0.5rem;
  font-size: 1rem;
  color: rgba(255,255,255,.72);
}

.radio-group,
.checkbox-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: sans-serif;
}

.radio-group label,
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--fnc-border-strong);
  border-radius: var(--fnc-radius-sm);
  background: var(--fnc-bg-input);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.radio-group label.disabled,
.checkbox-group label.disabled,
.radio-group label.disabled:hover,
.checkbox-group label.disabled:hover {
  border: 2px solid #444;
  color: #444;
  cursor: default;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
  accent-color: #7c3aed;
}

.radio-group input[type="radio"]:checked + span {
  font-weight: bold;
}

.radio-group label:hover,
.checkbox-group label:hover {
  border-color: #8b5cf6;
}

textarea {
	min-height: 10rem;
	resize: none;
}

form .captcha {
	background: var(--fnc-bg-input);
	border: 1px solid var(--fnc-border-strong);
	border-radius: var(--fnc-radius-sm);
	padding: 1rem;
	display: flex;
	gap: 1rem;
	flex-direction: row;
	align-items: center;
}

form .captcha .render {
	flex: 1 1 42%;
	min-width: 9.5rem;
}

form .captcha .value {
	flex: 1 1 58%;
	min-width: 0;
}

form .captcha .value .form-group,
form .captcha .value input {
	width: 100%;
}

.loader {
	width: 4.5rem;
	height: 1rem;
    display: inline-block;
    background-image: url(../images/loader.gif);
    background-size: contain;
    background-position: center center;
    vertical-align: bottom;
    background-repeat: no-repeat;
}

.message-wrapper {
	display: flex;
	width:100%;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	height: 100%; 
}

#fnc-message {
	position: relative;
	flex: 1;
	max-width: 40rem;
	text-align: center;
}

#fnc-session-message {
	display: none;
}

#fnc-session-message.fnc-message--open {
	display: flex !important;
	position: fixed !important;
	inset: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	max-width: none !important;
	flex: none !important;
	margin: 0 !important;
	z-index: 100000;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.72);
	text-align: center;
}

#fnc-session-message.fnc-message--open .message-content {
	flex: 0 0 auto;
	background: linear-gradient(180deg, rgba(28, 28, 32, 0.98) 0%, rgba(18, 18, 20, 0.99) 100%);
	padding: 1.5rem 1.75rem;
	border-radius: calc(var(--fnc-radius-lg, 20px) + 2px);
	max-width: min(32rem, 100%);
	width: 100%;
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: var(--fnc-shadow-card, 0 8px 32px rgba(0, 0, 0, 0.42));
}

#fnc-session-message.fnc-message--open .message-text {
	padding: 0.5rem 0 1.25rem;
	line-height: 1.5;
}

#fnc-session-message.fnc-message--open .message-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 8rem;
	margin: 0 auto;
}

#fnc-message .box.message {
	padding-top: 2rem;
}

#fnc-response {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1 1 auto;
	width: 100%;
	min-height: var(--fnc-main-min-height);
	box-sizing: border-box;
	padding: 2rem;
}

#fnc-navegation:has(> #fnc-response) {
	flex: 1 0 auto;
}

#fnc-response .container {
    background-color: #222222;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    padding: 40px 30px;
    text-align: center;
    max-width: 600px;
    width: 90%;
}


#fnc-response .message {
	font-size: 16px;
	line-height: 1.5;
	color: #bbbbbb;
	margin: 0 0 20px 0;
}

#fnc-response .link {
	display: inline-block;
	padding: 15px 25px;
	font-size: 16px;
	font-weight: bold;
	color: #111111;
	text-decoration: none;
	border-radius: 6px;
	background-color: #7c3aed;
	white-space: nowrap;
}

#fnc-response .link:Hover {
	background-color: #8b5cf6;
}
        
#fnc-response .message {
	font-size: 14px;
	line-height: 1.5;
	color: #777777;
	margin-top: 20px;
}

.table {
	background-color: #222222;
	border: 1px solid #333333;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
	padding: 1rem;
}

.grid {
	display: grid;
	gap: 1rem;
	font-size: 0.9rem;
	color: #f9f9f9;
}

.grid > .header,
.grid > .row > div {
	padding: 0.8rem 1rem;
	background-color: #2c2c2c;
	border-radius: 6px;
	word-break: break-word;
}

.grid > .header:Hover,
.grid > .row > div:Hover {
	background-color: #404040;
	transition: background-color 0.3s ease-in-out;
}

.grid .header {
	font-weight: bold;
	background-color: #333333;
	color: #7c3aed;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.grid > .row {
    display: contents; 
}

.fnc-pagination
{
	display: flex;
	padding: 1rem;
	gap: .75rem;
	justify-content: center;
    align-items: center;
}

.fnc-pagination .page,
.fnc-pagination .next,
.fnc-pagination .previous,
.fnc-pagination .first,
.fnc-pagination .last
{
	flex: 0 0 auto;
	background: #222;
	border: 1px solid #AAA;
	border-radius: .25rem;
	padding: .75rem;
}

.fnc-pagination .page:hover,
.fnc-pagination .next:hover,
.fnc-pagination .previous:hover,
.fnc-pagination .first:hover,
.fnc-pagination .last:hover
{
	background: #444;
	transition: background-color 0.3s ease-in-out;
}

.fnc-pagination .more
{
	flex: 0 0 auto;
	padding: .75rem;
}

.fnc-pagination .page.selected
{
	background: #444;
}

label:has(input[type="checkbox"]) {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.9rem;
	border-radius: 0.5rem;
	background: rgba(17,17,17,0.6);
	border: 2px solid rgba(255,255,255,0.08);
	color: #EAEAEA;
}

label > input[type="checkbox"] {
	-webkit-appearance: none !important;
	appearance: none !important;
	display: inline-block;
	align-self: center;
	vertical-align: middle;
	margin: 0 0.5rem 0 0;
	width: 1.25rem;
	height: 1.25rem;
	min-width: 1.25rem;
	border-radius: 0.28rem;
	border: 2px solid rgba(255,255,255,0.12);
	background-color: #222;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 55% 55%;
	transition: background-color 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
	transform: none;
	box-sizing: border-box;
}

label > input[type="checkbox"]:checked {
	background-color: #222;
	border-color: rgba(124,58,237,0.95);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23c4b5fd' d='M20.285 6.709l-11.02 11.02-5.55-5.55 1.414-1.414 4.136 4.136 9.606-9.606z'/></svg>");
}

label:has(input[type="checkbox"]:checked) {
	background: rgba(10,10,10,0.6);
}

label > input[type="checkbox"]:focus,
label > input[type="checkbox"]:focus-visible {
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(124,58,237,0.08) !important;
}

label:has(input[type="checkbox"]) { cursor: pointer; }
label > input[type="checkbox"] + * { color: #EAEAEA; }

/* Header: antes de que se amontonen ítems, solo íconos (texto sigue en DOM / title). */
@media screen and (max-width: 1700px) and (min-width: 769px) {
	nav.header-menu {
		font-size: 1.15rem;
	}

	nav.header-menu > ul {
		gap: 0.1rem;
		justify-content: center;
	}

	nav.header-menu > ul > li > a {
		font-size: 0;
		line-height: 0;
		letter-spacing: 0;
		padding: 0.55rem 0.72rem;
		white-space: nowrap;
	}

	nav.header-menu > ul > li > a > i {
		font-size: 1.2rem;
		line-height: 1;
		margin-right: 0 !important;
		vertical-align: middle;
	}

	#base-header .menu {
		min-width: 0;
		padding-inline: 0.25rem;
	}

	#base-header .menubox--responsive {
		gap: 0 0.55rem;
	}
}

/**/
@media screen and (max-width: 1024px)
{
	.box.half,
	.box.three-quarters,
	.box.one-quarters {
		width: 100%;
	}
}

@media screen and (max-width: 768px) 
{
	#base-header {
		padding: .5rem;
	}

	#base-header .menu--responsive {
		display: flex;
		flex: 0 0 auto;
		order: 1;
	}

	#base-header .menu--responsive.active {
		background: var(--fnc-accent-soft);
		color: var(--fnc-accent);
		border-radius: var(--fnc-radius-sm);
	}

	#base-header .menubox--responsive
	{
		display: none;
	}

	#base-header:has(.menubox--responsive.active) {
		z-index: 1000002;
	}

	#base-header .menubox--responsive.active {
		display: flex;
		position: fixed;
		overflow-x: hidden;
		overflow-y: auto;
		top: var(--fnc-header-height, 5rem);
		left: 0;
		bottom: 0;
		height: calc(100dvh - var(--fnc-header-height, 5rem));
		max-height: calc(100dvh - var(--fnc-header-height, 5rem));
		padding-top: 0;
		background: var(--fnc-bg-elevated);
		border-right: 1px solid var(--fnc-border);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		width: min(88vw, 20rem);
		max-width: 20rem;
		z-index: 1000001;
		box-sizing: border-box;
		box-shadow: 4px 0 24px rgba(0, 0, 0, 0.45);
		-webkit-overflow-scrolling: touch;
		gap: 0;
	}

	#base-header:has(.menubox--responsive.active) .options {
		visibility: hidden;
		pointer-events: none;
		height: 0;
		min-height: 0;
		padding: 0;
		margin: 0;
		overflow: hidden;
		opacity: 0;
	}

	#base-header .menubox-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: rgba(0, 0, 0, 0.6);
		z-index: 9;
		display: none;
	}


	#base-header .menubox--responsive li:last-child
	{
		border-bottom: 0;
	}

	#base-header .menubox--responsive nav.header-menu ul a
	{
		display: flex;
		align-items: center;
		gap: 0.65rem;
		padding: 0.85rem 1.25rem;
		width: 100%;
		font-size: 1.05rem;
	}

	#base-header .logo {
		flex: 1;
		width: auto;
		order: 4;
	}

	#base-header .options {
		order: 5;
		flex: 1 1 100%;
		max-width: none;
		width: 100%;
		padding: 0 1rem 0.65rem;
	}

	#base-header .menubox--responsive.active .menubox-userbar {
		flex: 0 0 auto;
		order: 1;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0.75rem;
		width: 100%;
		min-height: 0;
		padding: 1rem 1rem 0.85rem;
		overflow: visible;
		border-bottom: 1px solid var(--fnc-border);
		background: var(--fnc-bg-elevated-2);
	}

	#base-header .menubox-userbar .control,
	#base-header .menubox-userbar #app-profile-component-menu,
	#base-header .menubox-userbar #app-profile-component-menu .menu {
		overflow: visible;
		min-width: 0;
	}

	#base-header .menubox-userbar #app-profile-component-menu .photo {
		flex-shrink: 0;
	}

	#base-header .menubox--responsive.active .menubox-userbar .control {
		flex: 0 0 auto;
		order: 1;
		width: 100%;
		min-width: 0;
		justify-content: flex-start;
	}

	#base-header .menubox--responsive.active .menubox-userbar .control-menu {
		width: 100%;
	}

	#base-header .menubox--responsive.active .menubox-userbar .control-menu ul {
		width: 100%;
		align-items: flex-start;
	}

	#base-header .menubox--responsive.active .menubox-userbar .control-menu li {
		width: 100%;
		max-width: 100%;
	}

	#base-header .menubox--responsive.active .menubox-userbar .control-menu li a {
		justify-content: flex-start;
		text-align: left;
		width: 100%;
		box-sizing: border-box;
		padding: 0.85rem 1.25rem;
		border-radius: 0;
		font-size: 1.05rem;
	}

	#base-header .menubox--responsive.active .menubox-userbar .additional {
		order: 2;
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
		gap: 0.65rem;
		width: 100%;
		padding: 0;
		margin: 0;
	}

	#base-header .menubox--responsive.active .menubox-userbar .additional .fnc-wallet-balance {
		grid-column: auto;
		justify-self: stretch;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.4rem;
		width: 100%;
		min-height: 2.65rem;
		margin: 0;
		padding: 0.6rem 0.75rem;
		box-sizing: border-box;
		border-radius: var(--fnc-radius-sm);
		background: rgba(255, 255, 255, 0.06);
		border: 1px solid var(--fnc-border);
	}

	#base-header .menubox--responsive.active .menubox-userbar .additional .fnc-notifications {
		grid-column: auto;
		justify-self: stretch;
		display: flex;
		width: 100%;
		margin: 0;
	}

	#base-header .menubox--responsive.active .menubox-userbar .additional .fnc-notifications__trigger {
		width: 100%;
		min-height: 2.65rem;
		padding: 0.6rem 0.75rem;
		box-sizing: border-box;
		border-radius: var(--fnc-radius-sm);
		background: rgba(255, 255, 255, 0.06) !important;
		border: 1px solid var(--fnc-border);
	}

	#base-header .menubox--responsive.active #app-profile-component-menu {
		width: 100%;
	}

	#base-header .menubox--responsive.active #app-profile-component-menu .menu {
		display: flex;
		align-items: center;
		width: 100%;
		max-width: none;
		min-height: auto;
		padding: 0;
		gap: 0.75rem;
		border-radius: 0;
		background: transparent;
	}

	#base-header .menubox--responsive.active #app-profile-component-menu .menu:hover {
		background: transparent;
	}

	#base-header .menubox--responsive.active #app-profile-component-menu .photo {
		--fnc-profile-avatar-size: 3rem;
	}

	#base-header .menubox--responsive.active #app-profile-component-menu .username {
		font-size: 1.05rem;
		font-weight: 700;
	}

	#base-header .menubox--responsive.active #app-profile-component-menu .icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		width: 2.5rem;
		height: 2.5rem;
		margin-left: auto;
		opacity: 1;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.06);
		border: 1px solid var(--fnc-border);
		box-sizing: border-box;
	}

	#base-header .menubox--responsive.active #app-profile-component-menu .icon i {
		font-size: 1.05rem;
	}

	#base-header .menubox--responsive.active > .menu {
		display: block;
		flex: 1 1 auto;
		min-height: 0;
		padding: 0;
		border-bottom: 0;
		order: 2;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	#base-header .menubox--responsive.active nav.header-menu {
		padding: 0;
	}

	#base-header .menubox--responsive.active .menubox-userbar .additional:empty {
		display: none;
		padding: 0;
	}

	#base-header .menubox-userbar:empty,
	#base-header .menu:empty {
		display: none;
	}

	#base-header .menubox--responsive.active .menubox-userbar:has(.additional:empty):has(.control:empty) {
		display: none;
	}


	#base-footer {
		flex-direction: column;
		flex: 0 0 auto;
		width: 100%;
		min-height: auto;
	}

	#base-footer .footer-left {
		padding: .5rem;
		flex: 1;
		order: 2;
		width: 100%;
	}

	#base-footer .footer-middle {
		padding: .5rem;
		flex: 1;
		order: 1;
		width: 100%;
	}

	#base-footer .footer-right {
		padding: .5rem;
		flex: 1;
		order: 3;
		width: 100%;
	}

	nav.footer-menu {
		width: 100%;
	}

	nav.header-menu ul,
	nav.control-menu ul,
	nav.footer-menu ul {
		flex-direction: column;
		gap: 0;
	}

	nav.header-menu li a:hover, 
	nav.control-menu li a:hover {
		background: none;
	}

	nav.header-menu ul > li > ul,
	nav.control-menu ul > li > ul,
	nav.footer-menu ul > li > ul {
		padding-left: 1rem;
	}

	nav.header-menu li ul,
	nav.control-menu li ul,
	nav.footer-menu li ul {
		display: flex;
		position: inherit;
		padding-left: 1rem;
	}

	nav.header-menu ul ul ul,
	nav.control-menu ul ul ul,
	nav.footer-menu ul ul ul {
		top: 0;
		padding-left: 1rem;
	}

	nav.footer-menu li ul,
	nav.footer-menu ul ul ul {
		left: 0;
	}

	nav.footer-menu ul a {
		display: flex;
		padding: 1.5rem 2rem;
		width: 100%;
		font-size: 1.25rem;
		background: none;
	}

	.grid {
        grid-template-columns: 1fr;
		text-align: left;
    }

    .grid > .row {
        display: grid;
        gap: 0.5rem;
        background-color: #2c2c2c;
        border-radius: 12px;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .grid > .header {
        display: none;
    }

    .grid > .row > div:before {
        content: attr(data-label);
        font-weight: bold;
        color: #7c3aed;
        margin-right: 0.5rem;
        display: block;
        padding-bottom: 0.25rem;
    }

    .grid > .row > div {
        padding: 0;
        background-color: transparent;
        border-radius: 0;
    }
}
