html {
	scroll-behavior: smooth;
}

/* Cancel the bg white for dark mode */
body[data-theme-style="dark"].bg-white {
	background: var(--body-bg) !important;
}

/* Custom code: FC-2026-02-25: registration header styling */
.register-hero-title {
	letter-spacing: 0.2px;
	line-height: 1.2;
	font-weight: 700;
	font-size: 1.25rem;
}

.register-hero-subtitle {
	color: var(--primary);
	font-weight: 600;
	font-size: 0.78rem;
	margin-left: 0.35rem;
	white-space: nowrap;
	text-shadow: 0 6px 14px rgba(28, 220, 200, 0.25);
}

.register-hero-note {
	color: var(--gray-200);
	font-size: 0.98rem;
	line-height: 1.6;
	padding: 0.85rem 1.1rem;
	border-left: 4px solid var(--primary);
	background: rgba(28, 220, 200, 0.07);
	border-radius: 10px;
}

/* Custom code: FC-2026-02-25: register/login divider */
.register-hero-divider {
	height: 2px;
	width: 48px;
	background: var(--primary);
	border-radius: 999px;
	box-shadow: 0 6px 16px rgba(28, 220, 200, 0.22);
}
/* /Custom code: FC-2026-02-25 */

/* Custom code: FC-2026-02-25: register logo + card cohesion */
.register-background .register-logo-wrap {
	margin-bottom: 1.25rem !important;
}

.register-background .navbar-logo {
	max-height: 70px;
	filter: drop-shadow(0 10px 22px rgba(28, 220, 200, 0.18));
}

.register-background .register-card {
	border: 1px solid rgba(28, 220, 200, 0.18);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
/* /Custom code: FC-2026-02-25 */

@media (max-width: 575.98px) {
	.register-hero-title {
		font-size: 1.1rem;
	}

	.register-hero-subtitle {
		font-size: 0.74rem;
		margin-left: 0.25rem;
		text-shadow: 0 5px 12px rgba(28, 220, 200, 0.22);
	}

	.register-hero-note {
		font-size: 0.92rem;
		padding: 0.7rem 0.85rem;
	}

	.register-background .navbar-logo {
		max-height: 60px;
	}
}
/* /Custom code: FC-2026-02-25 */

/* Custom code: FC-2026-02-25: registration form grid */
.register-form-grid {
	margin-bottom: 0.5rem;
}

.register-form-col {
	padding-left: 0.6rem;
	padding-right: 0.6rem;
}

@media (max-width: 575.98px) {
	.register-form-col {
		padding-left: 0;
		padding-right: 0;
	}
}
/* /Custom code: FC-2026-02-25 */

/* App */
.app {
	background: hsl(210, 50%, 99%);
}

[data-theme-style="dark"].app {
	background: #0D0F11;
}

.app-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background: var(--gray-100);
	z-index: 100;
	opacity: .5;
}

.app-sidebar {
	display: flex;
	flex-direction: column;
	min-width: 260px;
	max-width: 260px;
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--border-radius);
	margin: 3rem 1.5rem 3rem -300px;
	transition: margin-left .15s linear, margin-right .15s linear;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 101;
}

[dir="rtl"] .app-sidebar {
	margin-left: initial;
	left: initial;
	right: 0;
	margin-right: -300px;
	border-left: 1px solid var(--gray-100);
	border-right: 0;
}

[dir="rtl"] [data-theme-style="dark"] .app-sidebar {
	border-right: 0;
	border-left: 1px solid var(--gray-100);
}

body.app-sidebar-opened .app-sidebar {
	margin-left: 1.5rem;
}

[dir="rtl"] body.app-sidebar-opened .app-sidebar {
	margin-right: 1.5rem;
}

@media (min-width: 992px) {
	.app-sidebar {
		margin-left: 1.5rem;
	}

	[dir="rtl"] .app-sidebar {
		margin-right: 1.5rem;
	}
}

.app-sidebar-title {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .5rem;
	margin: .5rem;
	height: 75px;
}

.app-sidebar-title a {
	font-size: 1.4rem;
	color: var(--gray-900);
	font-weight: 600;
}

.app-sidebar-title a:hover {
	text-decoration: none;
}

.app-sidebar-footer {
	width: 100%;
}

.app-sidebar-footer > a {
	width: 100%;
	padding: .75rem 1.75rem;
	border-top: 1px solid var(--gray-100);
	display: flex;
	align-items: center;
	color: var(--gray-500);
	font-size: .9rem;
	font-weight: 500;
	transition: background .3s;
	border-radius: var(--border-radius);
}

.app-sidebar-footer > a:hover {
	text-decoration: none;
	background: var(--gray-200);
	color: var(--gray-600);
}

.app-sidebar-links-wrapper {
	overflow-y: scroll;
	width: calc(100% - 6px);
	padding-bottom: .25rem;
	scrollbar-width: none;
}

.app-sidebar-links-wrapper:hover {
	width: 100%;
	scrollbar-color: var(--gray-200) var(--white) !important;
	scrollbar-width: thin !important;
}

.app-sidebar-links-wrapper::-webkit-scrollbar {
	background-color: transparent;
	width: 0;
}

.app-sidebar-links-wrapper::-webkit-scrollbar-thumb {
	background: var(--gray-200);
	border-radius: 10px;
}

.app-sidebar-links-wrapper:hover::-webkit-scrollbar {
	width: 6px;
}

.app-sidebar-links-wrapper:hover::-webkit-scrollbar-track {
	width: 6px;
}

.app-sidebar-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.app-sidebar-links > li {
	width: 100%;
	padding: 0.25rem calc(1rem - 6px) 0.25rem 1rem;
}

.app-sidebar-links > .divider-wrapper {
	width: 100%;
	padding: 0 calc(0.75rem - 6px) 0 0.75rem;
	margin: .25rem 0;
}

.app-sidebar-links > .divider-wrapper > .divider {
	border-top: 1px solid var(--gray-100);
}

.app-sidebar-links > li > a {
	width: 100%;
	display: flex;
	align-items: center;
	color: var(--gray-600);
	border-radius: var(--border-radius);
	padding: 0.75rem 1rem;
	transition: background .3s;
	font-size: .9rem;
	font-weight: 500;
}

.app-sidebar-links > li > a:hover {
	text-decoration: none;
	background: var(--gray-200);
	color: var(--gray-600);
}

[data-theme-style="dark"] .app-sidebar-links > li > a:hover {
	background: var(--gray-200);
	color: var(--gray-800);
}

.app-sidebar-links > li.active > a:not(.default) {
	background: var(--primary);
	color: var(--white);
	font-weight: 500;
}

[data-theme-style="dark"] .app-sidebar-links > li.active > a:not(.default) {
	background: var(--primary-800);
	color: var(--white);
}

.app-sidebar-avatar {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.app-sidebar-footer-block {
	max-width: 100%;
}

.app-sidebar-footer-text {
	color: var(--gray-600);
}

.app-content {
	margin-left: 0;
	flex-grow: 1;
}

[dir="rtl"] .app-content {
	margin-left: initial;
	margin-right: 0;
}

@media (min-width: 992px) {
	.app-content {
		margin-left: calc(260px + 1.5rem);
	}
	[dir="rtl"] .app-content {
		margin-left: initial;
		margin-right: calc(260px + 1.5rem);
	}
}

.app-navbar {
	min-height: 75px;
	border-bottom: 1px solid var(--gray-100);
}

[data-theme-style="dark"] .app-navbar {
	border-color: var(--gray-200);
}

/* Modal */
.modal-header {
	padding: 1rem;
	border-bottom: 0;
}

.modal-content {
	padding: 1rem;
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	border-radius: calc(2 * var(--border-radius));
}

/* Forms */
.input-group-text {
	font-size: 0.9rem;
}

.form-control-range {
	/* removing default appearance */
	-webkit-appearance: none;
	appearance: none;

	/*  slider progress trick  */
	overflow: hidden;

	/* creating a custom design */
	accent-color: var(--primary);
	background: var(--gray-200);
	border-radius: var(--border-radius);
	height: .5rem;
	margin: 0.75rem 0;
}

/* Track: webkit browsers */
.form-control-range::-webkit-slider-runnable-track, .form-control-range::-moz-range-track {
	background: var(--gray-200);
}

/* Thumb: webkit */
.form-control-range::-webkit-slider-thumb {
	/* removing default appearance */
	-webkit-appearance: none;
	appearance: none;

	/* creating a custom design */
	height: .75rem;
	width: .75rem;
	background-color: var(--primary);
	border-radius: 50%;
	border: 2px solid var(--white);

	/*  slider progress trick  */
	box-shadow: -2007px 0 0 2000px var(--primary-300);
}

.form-control-range::-moz-range-thumb {
	/* removing default appearance */
	-webkit-appearance: none;
	appearance: none;

	/* creating a custom design */
	height: .75rem;
	width: .75rem;
	background-color: var(--primary);
	border-radius: 50%;
	border: 2px solid var(--white);

	/*  slider progress trick  */
	box-shadow: -2007px 0 0 2000px var(--primary-300);
}

/* Footer */
.footer {
	margin: 3rem 0 3rem 0;
	padding-top: 3rem;
	padding-bottom: 3rem;
	background: var(--white);
}

.footer {
	color: var(--gray-700);
}

.footer a:not(.dropdown-item), .footer a:hover:not(.dropdown-item) {
	color: var(--gray-700);
}

.footer a.icon {
	color: var(--gray-700);
}

.footer button, .footer button:hover {
	color: var(--gray) !important;
}

.footer-logo {
	max-height: 2.5rem;
	height: 2.5rem;
}

.footer-heading {
	color: var(--black) !important;
}

.footer-social-wrapper {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
}

.footer-social-wrapper a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Custom code: FC-2026-02-26: footer language switch redesign */
.fcc-footer-lang-switch {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	flex-wrap: wrap;
}

.fcc-footer-lang-option {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.34rem 0.62rem;
	border-radius: 999px;
	border: 1px solid var(--gray-200);
	background: rgba(255, 255, 255, 0.9);
	color: var(--gray-700) !important;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-decoration: none !important;
	transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.fcc-footer-lang-option:hover {
	border-color: var(--primary);
	transform: translateY(-1px);
}

.fcc-footer-lang-option.is-active {
	border-color: var(--primary);
	background: var(--primary-100);
	color: var(--primary-700) !important;
}

.fcc-footer-lang-flag {
	line-height: 1;
	font-size: 0.9rem;
}

.fcc-footer-lang-code {
	line-height: 1;
}

[data-theme-style="dark"] .fcc-footer-lang-option {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.86) !important;
}

[data-theme-style="dark"] .fcc-footer-lang-option.is-active {
	border-color: rgba(28, 220, 200, 0.65);
	background: rgba(28, 220, 200, 0.14);
	color: #8df6ea !important;
}
/* /Custom code: FC-2026-02-26 */

/* App footer */
.app-footer {
	border: 1px solid var(--gray-100);
	border-radius: var(--border-radius);
	padding: 1.25rem;
}

/* Filters */
.filters-dropdown {
	width: 18rem;
	max-height: 30rem;
	overflow-y: auto;
}

/* Custom breadcrumbs */
.custom-breadcrumbs {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.custom-breadcrumbs > li {
	margin-right: .5rem;
}

.custom-breadcrumbs > li > a {
	color: var(--gray);
}

.custom-breadcrumbs > li > svg {
	color: var(--gray-400);
	margin-left: .5rem;
}



/* Helper classes */
.font-size-little-small {
    font-size: .95rem;
}

.font-size-small {
	font-size: .9rem;
}

.font-weight-450 {
    font-weight: 450;
}

.font-weight-500 {
	font-weight: 500;
}

.list-style-none {
	list-style: none;
	padding: 0;
}

img {
	vertical-align: inherit !important;
}

.icon-favicon {
	width: .95rem;
	height: auto;
}

.icon-favicon-small {
	width: .75rem;
	height: auto;
}

/* Dropdown */
.dropdown-item {
	color: var(--gray-800);
	font-weight: 450;
	font-size: .9rem;
}

.dropdown-item:hover, .dropdown-item:focus, .dropdown-item.active {
	border-radius: var(--border-radius);
}

.dropdown-item svg {
	color: var(--gray-600);
}

.dropdown-item:active svg, .dropdown-item.active svg {
	color: var(--white);
}

/* Navbar */
.navbar-main {
    z-index: 10;
	min-height: 0 !important;
	background: #ffffff75;
	border-bottom: 1px solid var(--gray-100);
}

[data-theme-style="dark"] .navbar-main {
    background: #00000057;
}

.navbar-main .navbar-nav > li > a {
	font-size: .9rem;
	font-weight: 500;
}

/* Custom code: FC-2026-02-26: premium navbar logo + menu polish */
#navbar.navbar-main {
	padding-top: 0.52rem;
	padding-bottom: 0.52rem;
}

#navbar.navbar-main > .container {
	max-width: 1240px;
}

#navbar.navbar-main .navbar-brand {
	flex-shrink: 0;
	margin-right: 1.1rem;
	min-width: 150px;
}

#navbar.navbar-main .navbar-brand .navbar-logo {
	display: block;
	height: 2.95rem;
	max-height: 2.95rem;
	width: auto !important;
	max-width: 210px;
	object-fit: contain;
	filter: drop-shadow(0 6px 14px rgba(28, 220, 200, 0.14));
}

#navbar.navbar-main .navbar-nav .nav-link {
	font-size: 0.96rem;
	font-weight: 550;
	color: rgba(255, 255, 255, 0.78) !important;
	transition: color 0.2s ease;
}

#navbar.navbar-main .navbar-nav .nav-link:hover {
	color: #9efbf1 !important;
}
/* /Custom code: FC-2026-02-26 */

.navbar-main .navbar-nav > li {
	padding: .5rem 0 !important;
}

@media (min-width: 992px) {
	.navbar-main .navbar-nav > li {
		padding: .5rem !important;
	}
}

.navbar-logo {
	max-height: 2.5rem;
	height: 2.5rem;
}

.navbar-logo-mini {
	max-height: 1.25rem;
	height: 1.25rem;
}

.navbar-avatar {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.navbar-custom-toggler {
	padding: 0.5rem .8rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border-radius: var(--border-radius);

	color: var(--gray-700);
	border-color: var(--gray-300);
}

.navbar-dark .navbar-nav .nav-link {
	color: rgba(255,255,255,.85);
}

.chart-container {
	position: relative;
	margin: auto;
	height: 275px;
	width: 100%;
}

@media print {
	.chart-container canvas {
		min-height: 100%;
		max-width: 100%;
		max-height: 100%;
		height: auto!important;
		width: auto!important;
	}
}

/* Dropdown */
.dropdown-toggle-simple::after {
	display:none;
}

/* Index */
.index {
	background: #f9fcff;
}

[data-theme-style="dark"].index {
	background: var(--body-bg);
}

.index .navbar-main .btn {
	border-radius: 5rem;
	padding: 0.5rem 1rem;
}

.index-highly-rounded {
	border-radius: 1rem;
}

/* Custom code: FC-2026-02-26: main navbar alignment cleanup */
#navbar.navbar-main .navbar-collapse {
	align-items: center;
}

#navbar.navbar-main .navbar-nav {
	align-items: center;
	gap: 0.1rem;
}

#navbar.navbar-main .navbar-nav .nav-item {
	display: flex;
	align-items: center;
}

#navbar.navbar-main .navbar-nav .nav-link {
	white-space: nowrap;
	line-height: 1.15;
}

#navbar.navbar-main .navbar-nav .btn {
	white-space: nowrap;
}

/* Custom code: FC-2026-02-26: compact desktop navbar fit */
@media (min-width: 992px) and (max-width: 1400px) {
	#navbar.navbar-main > .container {
		max-width: 1180px;
	}

	#navbar.navbar-main {
		padding-top: 0.44rem;
		padding-bottom: 0.44rem;
	}

	#navbar.navbar-main .navbar-brand {
		margin-right: 0.75rem;
		min-width: 132px;
	}

	#navbar.navbar-main .navbar-brand .navbar-logo {
		height: 2.6rem;
		max-height: 2.6rem;
		max-width: 182px;
	}

	#navbar.navbar-main .navbar-nav {
		gap: 0;
	}

	#navbar.navbar-main .navbar-nav .nav-link {
		font-size: 0.88rem;
	}

	.navbar-main .navbar-nav > li {
		padding: 0.36rem !important;
	}

	.index .navbar-main .btn {
		padding: 0.42rem 0.74rem;
		font-size: 0.85rem;
	}

}
/* /Custom code: FC-2026-02-26 */

@media (max-width: 991.98px) {
	#navbar.navbar-main .navbar-brand {
		min-width: 0;
		margin-right: 0.65rem;
	}

	#navbar.navbar-main .navbar-brand .navbar-logo {
		height: 2.55rem;
		max-height: 2.55rem;
		max-width: 180px;
	}

	#navbar.navbar-main .navbar-nav {
		align-items: flex-start;
		gap: 0;
	}

	#navbar.navbar-main .navbar-nav .nav-item {
		width: 100%;
	}

	#navbar.navbar-main .navbar-nav .nav-link {
		padding-left: 0;
		padding-right: 0;
	}

	#navbar.navbar-main .navbar-nav .btn {
		margin-top: 0.2rem;
	}

}
/* /Custom code: FC-2026-02-26 */

.user-avatar {
	border-radius: 50%;
	max-width: 80px;
	max-height: 80px;
}

/* Link Settings page */
.link-background-type-preset {
	width: 100%;
	height: 5rem;
	border-radius: var(--border-radius);
	transition: .3s transform, opacity;
}

.link-background-type-preset:hover {
	cursor: pointer;
	transform: scale(1.025);
}

input[type="radio"]:checked ~ .link-background-type-preset {
	transform: scale(1.05);
	opacity: .25;
}

/* Biolink directory */
.link-directory-avatar {
	width: 60px;
	height: 60px;
	object-fit: cover;
}

/* Biolink theme */
.link-biolink-theme {
	transition: .3s transform, .3s opacity, .3s border-color;
	height: 22.5rem !important;
	background-size: cover !important;
	background-position: center center !important;
	border-width: 2px;
}

.link-biolink-theme:hover {
	cursor: pointer;
	transform: scale(1.025);
}

input[type="radio"]:checked ~ .link-biolink-theme {
	transform: scale(1.05);
	border-color: var(--primary);
}

.link-biolink-theme-custom {
	background: linear-gradient(to right, #800080, #ffc0cb);
	color: white;
}

.link-btn-straight {
	border-radius: 0;
}

.link-btn-round {
	border-radius: 50px;
}

.link-btn-rounded {
	border-radius: .4rem;
}

.biolink-switch-buttons .nav-link.active {
	background: var(--gray-500);
}


/* Biolink preview iframe */
.biolink-preview {
	position: relative;
	margin: 0 auto;
	height: auto;
	width: auto;
	display: inline-block;
	text-align: left;
}

.biolink-preview-iframe-container {
	overflow: hidden;
	width: 300px;
	height: 625px;
	border-radius: 2.5rem;
	border: 10px solid black;
	position: relative;
	box-shadow: 0 0 30px rgba(0,0,0,0.20);
}

@media (min-width: 768px) {
	.biolink-preview-iframe-container {
		width: 375px;
		height: 800px;
	}
}

.biolink-preview-iframe-loading {
	width: 100%;
	height: 100%;
	background: hsla(0, 0%, 0%, .6);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
}

.biolink-preview-iframe {
	width: 100%;
	height: 100%;
	border: 0;
	margin: 0;
	padding: 0;
}

/* Others */
.container-disabled {
	pointer-events: none;
	opacity: .5;
}

.container-disabled-simple {
	pointer-events: none;
}

/* Custom row */
.custom-row {
	border-radius: var(--border-radius);
	padding: 1.25rem;
	position: relative;
	border: 1px solid var(--gray-100);
	background: var(--white);
}

.custom-row-inactive {
	background: var(--gray-100);
}

.custom-row-side-controller {
	right: 100%;
	top: 25%;
	font-size: 1.2em;
	padding: .2em .2em;
}

[dir="rtl"] .custom-row-side-controller {
	right: initial;
	left: 100%;
}

@media (min-width: 992px) {
	.custom-row-side-controller {
		position: absolute;
		padding: .4em .8em;
	}
}

.custom-row-side-controller-grab {
	cursor: grab;
	opacity: .5;
	transition: .3s opacity;
}

.biolink_block:hover .custom-row-side-controller-grab {
	opacity: 1;
}

/* Custom code: FC-2026-02-27: global fallback premium style for biolink editor blocks */
.app #biolink_blocks .biolink_block.card {
	position: relative;
	overflow: visible;
	border: 1px solid var(--gray-200);
	border-radius: .85rem;
	background: linear-gradient(135deg, var(--white), var(--gray-100));
	box-shadow: 0 .35rem 1rem rgba(0, 0, 0, .06);
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.app #biolink_blocks .biolink_block.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), transparent);
	opacity: .42;
}

.app #biolink_blocks .biolink_block.card:hover {
	transform: translateY(-1px);
	border-color: var(--primary);
	box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .1);
}

.app #biolink_blocks .biolink_block.card.custom-row-inactive {
	background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
	border-color: var(--gray-300);
}

body[data-theme-style="dark"].app #biolink_blocks .biolink_block.card {
	background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
	border-color: var(--gray-600);
	box-shadow: 0 .45rem 1.2rem rgba(0, 0, 0, .28);
}

body[data-theme-style="dark"].app #biolink_blocks .biolink_block.card:hover {
	border-color: var(--primary);
	box-shadow: 0 .55rem 1.35rem rgba(0, 0, 0, .33);
}

body[data-theme-style="dark"].app #biolink_blocks .biolink_block.card.custom-row-inactive {
	background: linear-gradient(135deg, var(--gray-800), var(--gray-700));
	border-color: var(--gray-600);
}

body[data-theme-style="dark"].app #biolink_blocks .biolink_block.card .text-muted {
	color: var(--gray-400) !important;
}

.app #biolink_blocks .biolink_block.card .custom-row-side-controller {
	z-index: 3;
}
/* /Custom code: FC-2026-02-27 */

/* Tables */
.table-image-wrapper {
	border-radius: 50%;
	width: 2.5rem;
	height: 2.5rem;
	max-width: 2.5rem;
	max-height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-100);
}

.table-custom-container {
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-100);
}

.table-custom {
	margin-bottom: 0;
}

.table-custom thead th {
	border-top: 0;
	border-bottom: 0;
	background: var(--white);
	color: var(--gray-900)
}

.table-custom th {
	padding: 1.25rem 1rem;
}

.table-custom td {
	padding: 1.55rem 1rem;
	background: var(--white);
	vertical-align: middle;
	border-color: var(--gray-100);
}

/* Helpers */
.cursor-pointer {
	cursor: pointer;
}

.no-focus:focus {
    outline: 0;
    box-shadow: none;
}

.appearance-none {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

/* Pricing */
.pricing-plan {
	border: 1px solid var(--gray-100);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.pricing-header {
	display: flex;
	flex-direction: column;
	padding: 2.2rem 2.2rem 0 2.2rem;
	background: var(--white);
	border-radius: calc(2*var(--border-radius));
}

[data-theme-style="dark"] .pricing-header {
	border-color: var(--gray-100);
}

.pricing-name {
	color: var(--black);
	font-size: 1.15rem;
	font-weight: 600;
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	display: inline-block;
}

.pricing-price {
	margin: 1rem 0;
}

.pricing-price-amount {
	font-size: 3rem;
	font-weight: bold;
}

.pricing-price-currency {
	font-size: .9rem;
	font-weight: 500;
	color: var(--gray);
}

.pricing-price-currency-symbol {
	font-size: 3rem;
	font-weight: bold;
}

.pricing-details {
	font-size: .85rem;
	color: var(--gray-600);
}

.pricing-body {
	padding: 0 2.2rem 2.2rem 2.2rem;
	background: var(--white);
	height: 100%;
	border-bottom-left-radius: calc(2*var(--border-radius));
	border-bottom-right-radius: calc(2*var(--border-radius));
}

.pricing-features {
	list-style: none;
	padding: 0;
}

.pricing-features li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 1rem 0;
}

.pricing-tag {
	position: absolute;
	font-size: 80%;
	font-weight: 600;
	background: var(--gray-600);
	color: var(--gray-50);
	padding: 0.1rem 0.8rem;
	border-radius: var(--border-radius);
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

/* Custom Radio Boxes */
.custom-radio-box {
	cursor: pointer;
}

.custom-radio-box .custom-radio-box-main-text {
	font-size: 1.15rem;
	font-weight: bold;
}

.custom-radio-box .custom-radio-box-main-icon {
	font-size: 1.25rem;
}

.custom-radio-box input[type="radio"] + div, .custom-radio-box input[type="checkbox"] + div {
	transition: all .3s ease-in-out;
	border: 1px solid var(--gray-100);
	background: var(--white);
}

.custom-radio-box input[type="radio"]:checked + div, .custom-radio-box input[type="checkbox"]:checked + div {
	border: 1px solid var(--primary);
}

.custom-radio-box input[type="radio"]:hover + div, .custom-radio-box input[type="checkbox"]:hover + div {
	border: 1px solid var(--primary);
}


/* QR Codes */
.qr-code {
	width: 100rem;
}

.qr-code-loading {
	animation: opacity-loading 1s infinite ease-in-out alternate;
}

@keyframes opacity-loading {
	0% { opacity: 1; }
	100% { opacity: .5; filter: blur(5px) }
}

.qr-code-avatar {
	width: 65px;
	height: 65px;
	border-radius: var(--border-radius);
	padding: .25rem;
	border: 1px solid var(--gray-100);
}

/* Crypto icon */
.cryptocurrency-icon {
    width: 40px;
    height: 40px;
}

/* Round circles */
.round-circle-md {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

.round-circle-lg {
	width: 4.5rem;
	height: 4.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

/* Invoice css */
.invoice-table th {
	border-top: 0 !important;
}

.invoice-table td {
	vertical-align: baseline !important;
}

@media print {
    .invoice {
        page-break-after: always;
    }

    body, html, .container {
        height: auto !important;
        overflow: visible !important;
    }

	.invoice-logo {
		filter: grayscale(100%);
	}
}

/* Base animation */
.altum-animate {
	-webkit-animation-duration:500ms;
	animation-duration:500ms;
}

.altum-animate-fill-both {
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
}

.altum-animate-fill-none {
	-webkit-animation-fill-mode:none;
	animation-fill-mode:none;
}

@keyframes fadeIn{
	0% {
		opacity:0
	}
	to {
		opacity:1
	}
}
.altum-animate-fade-in {
	-webkit-animation-name:fadeIn;
	animation-name:fadeIn
}


/* Custom button */
.btn-custom {
	padding: .5rem 1.5rem;
	color: var(--gray);
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-100) !important;
	font-size: .9rem;
	background: var(--white);
}

.btn-custom:hover {
	color: var(--gray);
	border: 1px solid var(--gray-200) !important;
}

.btn-custom.active {
	color: var(--primary);
	border: 1px solid var(--primary);
}

/* Blog */
.blog-post-image {
	max-height: none;
	object-fit: contain;
	height: auto;
}

.blog-post-image-small {
	height: auto;
	max-height: none;
	object-fit: contain;
}

.blog-post-content {
	line-height: 1.75;
	word-break: break-word;
}

.blog-post-content p {
	margin-bottom: 1.5rem;
}

/* Helper for quill editor code block */
.ql-code-block {
	background-color: var(--gray-200);
	color: var(--gray-600);
	padding: 1rem;
	border-radius: var(--border-radius);
	overflow-x: auto;
	font-family: 'Courier New', Courier, monospace;
	white-space: pre;
	font-size: .9rem;
	line-height: 1.5;
}

.ql-content p {
	margin-bottom: 0 !important;
}

.ql-content li[data-list="bullet"] {
	list-style-type: disc;
}

blockquote {
	border-left: 4px solid var(--gray-400);
	padding: 1rem 1.5rem;
	margin: 1.5rem 0;
	background-color: var(--gray-100);
	font-style: italic;
	color: var(--gray-600);
	font-size: 1.1rem;
	line-height: 1.6;
	border-radius: var(--border-radius);
}

/* File input */
.altum-file-input {
	padding: 1rem;
	background: var(--gray-100);
	border: 1px solid var(--gray-100);
	border-radius: 0.25rem;
	cursor: pointer;
	font-size: .9rem;
}

.altum-file-input:hover {
	border-color: var(--gray-300);
}

.altum-file-input::file-selector-button {
	border: 0;
	padding: .4rem .75rem;
	border-radius: var(--border-radius);
	background-color: var(--white);
	cursor: pointer;
	font-size: .9rem;
	margin-right: 1rem;
}

/* File input preview */
.altum-file-input-preview {
	max-width: 100%;
	max-height: 68px;
	min-height: 68px;
	object-fit: cover;
}

/* File input preview */
.altum-file-input-preview {
	max-width: 100%;
	max-height: 68px;
	min-height: 68px;
	object-fit: cover;
}

.sticky {
	position: sticky !important;
	top: 1rem;
	height: min-content;
}

/* Icons on links animations */
a svg {
	transition: transform .15s;
}

a:hover svg {
	transform: scale(1.1);
}

a:active svg {
	transform: scale(.9);
}

/* Dark mode for some icons */
[data-theme-style="dark"] svg[data-custom-colors] {
    color: var(--brand-color-dark) !important;
}

/* Helper zoom class for icons */
.icon-zoom-animation svg {
	transition: transform .15s;
}

.icon-zoom-animation:hover svg {
	transform: scale(1.1);
}

/* Self zoom */
.zoom-animation {
	transition: transform .15s;
}

.zoom-animation:hover {
	transform: scale(1.05);
}

.zoom-animation:active {
	transform: scale(.95);
}

.zoom-animation-subtle {
	transition: transform .3s;
}

.zoom-animation-subtle:hover {
	transform: scale(1.025);
}

.up-animation {
	transition: transform .3s;
}

.up-animation:hover {
	transform: translateY(-10px);
}

/* Color picker */
@media print {
	.pcr-app {
		display: none;
	}
}

.pcr-button {
	border: 1px solid white !important;
	outline: 1px solid var(--gray-300) !important;
	height: calc(var(--input-padding-y) + var(--input-padding-x) + var(--input-font-size) + calc(var(--input-font-size) / 2.75)) !important;
	border-radius: var(--border-radius) !important;
	width: 100% !important;
}

.pcr-button::before, .pcr-button::after {
	border-radius: var(--border-radius) !important;
}

/* Width fit content */
.w-fit-content {
	width: fit-content !important;
}

/* Signatures */
.signature-avatar {
	width: 50px;
	height: 50px;
	object-fit: cover;
	background: var(--primary-100);
}

/* Ajax loading overlay */
.loading-overlay {
	padding: 1.25rem;
	border-radius: var(--border-radius);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--white);
	z-index: 100;
	opacity: 0.8;
}

[data-theme-style="dark"] .loading-overlay {
	background: var(--gray-50);
}

/* Input group button */
.input-group > .input-group-append > .btn {
	font-size: .9rem;
}

/* AIX */
.ai-chat-avatar {
	width: 35px;
	height: 35px;
}

.ai-chat-big-avatar {
	width: 50px;
	height: 50px;
}

.chat-messages {
	height: 25rem;
	overflow-y: scroll;
}

.chat-image > img {
	max-height: 15rem;
}

.chat-content {
	word-break: break-word;
}

/* Shiki code highlighter */
.shiki {
	overflow: auto;
	border-radius: var(--border-radius);
	padding: 1.5rem;
	font-size: .9rem;
	line-height: 1.5rem;
}

.shiki code {
	background: initial !important;
}

/* Fa stack small */
.fa-stack-small {
	font-size: 0.65rem;
	vertical-align: middle;
}

/* Btn group */
.btn-group-custom {
	border: 1px solid var(--gray-100);
	padding: 0.5rem;
	border-radius: var(--border-radius);
	flex-wrap: wrap;
	display: inline-flex;
	gap: 0.5rem;
}

.btn-group-custom .btn {
	border-radius: var(--border-radius) !important;
	background: var(--gray-200);
}

.btn-group-custom .btn.active {
	background: var(--dark);
	color: var(--white);
    z-index: 0 !important;
}

/* Custom scrollbar */
body * {
    scrollbar-color: var(--gray-200) var(--white) !important;
    scrollbar-width: thin !important;
}

body *::-webkit-scrollbar-thumb  {
    background: var(--gray-200);
    border-radius: 10px;
    width: 6px;
    height: 6px;
}

body *::-webkit-scrollbar, body *::-webkit-scrollbar-track {
    background: var(--white);
    border-radius: 10px;
    width: 6px;
    height: 6px;
}

/* Notification bell */
.internal-notification-icon {
	animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px var(--danger);
	}
	100% {
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	}
}

/* Teams */
.team-user-avatar {
	width: 45px;
	height: 45px;
}

.team-delegate-access-wrapper {
	margin: .75rem;
	border-radius: .5rem;
}

@media (min-width: 992px) {
	.team-delegate-access-wrapper {
		border-radius: 5rem;
	}
}

/* Announcements */
.announcement-wrapper {
	position: relative;
	z-index: 10;
	margin: .75rem;
	border-radius: .5rem;
	opacity: 0;
	transition: opacity .3s ease-in;
	animation: ac-fade-in-down .3s ease-in .6s forwards;
}

@media (min-width: 992px) {
	.announcement-wrapper {
		border-radius: 5rem;
	}
}

@keyframes ac-fade-in-down {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/* PWA */
.pwa-wrapper {
	position: fixed;
	bottom: 0;
	width: calc(100% - 1.5rem);
	z-index: 1000;
	background: hsla(0, 0%, 90%, 50%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

[data-theme-style="dark"] .pwa-wrapper {
	background: hsla(0, 0%, 22%, 50%);
}

.rounded-2x {
	border-radius: calc(2*var(--border-radius));
}

.rounded-3x {
	border-radius: calc(3*var(--border-radius));
}

/* Pointer events */
.pointer-events-all {
	pointer-events: all !important;
}

/* Prevent fontawesome layout shifts */
i.fa-fw {
	width: 1.25em;
	display: inline-block;
}

i.fa-xs {
	font-size: .85em;
}

i.fa-sm {
	font-size: .875em;
}

i.fa-lg {
	font-size: 1.25em;
}

i.xl {
	font-size: 1.5em;
}

/* Toolkit */
.tool-icon {
	min-width: 2.75rem;
	max-height: 2.75rem;
	width: 2.75rem;
	height: 2.75rem;
}

.tool-icon-wrapper {
	padding: 0 1.25rem;
}

/* Ratings */
.rating-star {
	cursor: pointer;
}

.rating-star svg {
	color: #ffc107;
	transition: color .15s;
}

.rating-star:hover svg,
.rating-star:hover ~ .rating-star svg
{
	color: #ff8800 !important;
}

.rating-star-chosen svg,
.rating-star-chosen ~ .rating-star svg
{
	color: #dd6200;
}

/* Links */
.link-type-icon {
	min-width: 2.25rem;
	max-height: 2.25rem;
	width: 2.25rem;
	height: 2.25rem;
}

/* Custom code: FC-2026-02-26: Forever Card Club premium blog redesign */
:root {
	--fcc-bg-dark: #0b0f12;
	--fcc-panel-bg: rgba(255, 255, 255, 0.05);
	--fcc-panel-bg-strong: rgba(255, 255, 255, 0.06);
	--fcc-panel-border: rgba(255, 255, 255, 0.08);
	--fcc-text-main: rgba(255, 255, 255, 0.92);
	--fcc-text-secondary: rgba(255, 255, 255, 0.65);
	--fcc-mint: #36d39a;
	--fcc-mint-light: #7cf7c7;
	--fcc-gold: #e0a552;
	--fcc-radius-card: 18px;
	--fcc-radius-media: 18px;
	--fcc-shadow-deep: 0 28px 52px rgba(0, 0, 0, 0.42);
	--fcc-blur: blur(14px);
}

.fcc-blog-page-bg {
	background: radial-gradient(1100px 600px at 14% 5%, rgba(54, 211, 154, 0.1) 0%, rgba(11, 15, 18, 0) 55%), var(--fcc-bg-dark);
	padding: 2.25rem 0 3rem;
	min-height: 100vh;
}

/* Custom code: FC-2026-02-26: smooth blog top/footer background transitions */
body.fcc-blog-route {
	background:
		radial-gradient(900px 520px at 14% 13%, rgba(54, 211, 154, 0.14) 0%, rgba(11, 15, 18, 0) 58%),
		linear-gradient(180deg, #05080b 0%, #07121a 24%, #07131d 72%, #06090d 100%);
	background-attachment: fixed;
}

body.fcc-blog-route .fcc-blog-page-bg {
	position: relative;
	background: transparent;
	padding-top: 2.7rem;
	padding-bottom: 4.2rem;
	min-height: auto;
}

body.fcc-blog-route .fcc-blog-page-bg::before,
body.fcc-blog-route .fcc-blog-page-bg::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	pointer-events: none;
	z-index: 0;
}

body.fcc-blog-route .fcc-blog-page-bg::before {
	top: -36px;
	height: 140px;
	background: linear-gradient(180deg, rgba(5, 8, 11, 0.96) 0%, rgba(5, 8, 11, 0) 100%);
}

body.fcc-blog-route .fcc-blog-page-bg::after {
	bottom: -60px;
	height: 160px;
	background: linear-gradient(0deg, rgba(6, 9, 13, 0.98) 0%, rgba(6, 9, 13, 0) 100%);
}

body.fcc-blog-route .fcc-blog-wrap {
	position: relative;
	z-index: 1;
}

body.fcc-blog-route .footer.app-footer {
	background: rgba(15, 20, 27, 0.72);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 22px 38px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
/* /Custom code: FC-2026-02-26 */

.fcc-blog-wrap {
	max-width: 1160px;
	color: var(--fcc-text-main);
}

.fcc-blog-wrap .custom-breadcrumbs > li > a,
.fcc-blog-wrap .custom-breadcrumbs > li,
.fcc-blog-wrap .custom-breadcrumbs > li > svg {
	color: var(--fcc-text-secondary);
}

.fcc-blog-grid {
	row-gap: 1.5rem;
}

.fcc-blog-main-col {
	max-width: 100%;
}

.fcc-blog-sidebar-col {
	max-width: 100%;
}

.fcc-sidebar-sticky {
	position: sticky;
	top: 1.2rem;
}

.fcc-glass-card {
	background: var(--fcc-panel-bg);
	border: 1px solid var(--fcc-panel-border) !important;
	border-radius: var(--fcc-radius-card);
	box-shadow: var(--fcc-shadow-deep);
	backdrop-filter: var(--fcc-blur);
	-webkit-backdrop-filter: var(--fcc-blur);
}

.fcc-article-card .card-body,
.fcc-widget-card .card-body,
.fcc-share-card .card-body,
.fcc-post-card .card-body {
	padding: 1.5rem;
}

.fcc-article-hero {
	padding: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 18px;
	background: radial-gradient(circle at 12% 8%, rgba(124, 247, 199, 0.2) 0%, rgba(224, 165, 82, 0.08) 25%, rgba(255, 255, 255, 0.03) 68%);
	margin-bottom: 1.5rem;
}

.fcc-hero-image-frame {
	border-radius: var(--fcc-radius-media);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
	margin-bottom: 1rem;
}

.fcc-hero-image,
.fcc-post-thumb {
	border-radius: var(--fcc-radius-media);
	width: 100%;
	height: auto;
	max-height: 360px;
	object-fit: contain;
	filter: none !important;
	opacity: 1 !important;
}

.fcc-post-thumb {
	max-height: 240px;
	background: rgba(255, 255, 255, 0.02);
}

.fcc-article-title {
	color: var(--fcc-text-main);
	font-weight: 700;
	letter-spacing: 0.1px;
	line-height: 1.25;
}

.fcc-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.fcc-meta-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.38rem 0.7rem;
	border-radius: 999px;
	font-size: 0.77rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: var(--fcc-text-main);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.11);
}

.fcc-blog-post-content {
	max-width: 72ch;
	line-height: 1.8;
	color: var(--fcc-text-main);
	word-break: break-word;
}

.fcc-blog-post-content p,
.fcc-blog-post-content ul,
.fcc-blog-post-content ol {
	margin-bottom: 1.55rem;
	color: var(--fcc-text-main);
}

.fcc-blog-post-content h2,
.fcc-blog-post-content h3,
.fcc-post-title,
.fcc-blog-index-title {
	color: var(--fcc-text-main);
}

.fcc-blog-post-content h2,
.fcc-h2-accent {
	position: relative;
	display: inline-block;
	padding-bottom: 0.5rem;
	margin-top: 1.4rem;
	margin-bottom: 1rem;
}

.fcc-blog-post-content h2::after,
.fcc-h2-accent::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--fcc-mint), var(--fcc-gold));
	opacity: 0.9;
}

.fcc-blog-post-content h3 {
	color: rgba(255, 255, 255, 0.86);
	font-weight: 600;
	margin-top: 1.2rem;
}

.fcc-blog-post-content ul,
.fcc-blog-post-content ol {
	list-style: none;
	padding-left: 0;
}

.fcc-blog-post-content li {
	position: relative;
	padding-left: 1.15rem;
	margin-bottom: 0.62rem;
}

.fcc-blog-post-content li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 999px;
	background: var(--fcc-mint);
	box-shadow: 0 0 10px rgba(54, 211, 154, 0.7);
}

.fcc-blog-wrap a,
.fcc-blog-post-content a,
.fcc-post-desc a,
.fcc-popular-link,
.fcc-widget-link-item a {
	color: var(--fcc-mint);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.fcc-blog-wrap a:hover,
.fcc-blog-post-content a:hover,
.fcc-post-desc a:hover,
.fcc-popular-link:hover,
.fcc-widget-link-item a:hover {
	color: var(--fcc-mint-light);
	text-decoration-color: var(--fcc-mint-light);
}

/* Custom code: FC-2026-02-26: remove underline in categories/popular widgets */
.fcc-widget-link-item a,
.fcc-widget-link-item a:hover,
.fcc-popular-link,
.fcc-popular-link:hover,
.fcc-popular-meta a,
.fcc-popular-meta a:hover {
	text-decoration: none !important;
}
/* /Custom code: FC-2026-02-26 */

.fcc-widget-title {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: var(--fcc-text-secondary) !important;
	margin-bottom: 0.95rem !important;
	font-weight: 700;
}

.fcc-widget-list {
	margin: 0;
	padding: 0;
}

.fcc-widget-link-item {
	border-radius: 12px;
	padding: 0.34rem 0.5rem;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	border: 1px solid transparent;
}

.fcc-widget-link-item:hover,
.fcc-popular-item:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.12);
	transform: translateY(-1px);
}

.fcc-popular-item {
	display: flex;
	align-items: center;
	overflow: hidden;
	border-radius: 12px;
	padding: 0.35rem 0.4rem;
	border: 1px solid transparent;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.fcc-popular-thumb {
	width: 2.1rem !important;
	height: 2.1rem !important;
	min-width: 2.1rem;
	max-width: 2.1rem;
	flex: 0 0 2.1rem;
	display: block;
	border-radius: 10px;
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, 0.15);
	filter: none !important;
	opacity: 1 !important;
}

.fcc-popular-item-content {
	min-width: 0;
	flex: 1 1 auto;
}

.fcc-popular-link {
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.3;
	word-break: break-word;
}

.fcc-popular-badge {
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(54, 211, 154, 0.25), rgba(224, 165, 82, 0.24));
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.08);
	display: inline-block;
}

.fcc-popular-meta,
.fcc-post-meta,
.fcc-post-desc,
.fcc-blog-list-header i,
.fcc-blog-wrap .text-muted {
	color: var(--fcc-text-secondary) !important;
}

.fcc-post-title {
	line-height: 1.35;
	font-weight: 650;
}

.fcc-post-desc {
	line-height: 1.8;
	max-width: 70ch;
}

.fcc-blog-home-hero .card-body,
.fcc-topics-card .card-body {
	padding: 1.4rem;
}

.fcc-hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.34rem 0.72rem;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	color: var(--fcc-mint-light);
	background: rgba(54, 211, 154, 0.16);
	border: 1px solid rgba(124, 247, 199, 0.35);
	border-radius: 999px;
}

.fcc-home-hero-title {
	font-size: clamp(1.35rem, 2.8vw, 2rem);
	line-height: 1.25;
	color: var(--fcc-text-main);
	font-weight: 700;
	max-width: 22ch;
}

.fcc-home-hero-subtitle {
	color: var(--fcc-text-secondary);
	max-width: 46ch;
	line-height: 1.75;
}

.fcc-home-hero-btn-primary,
.fcc-home-hero-btn-secondary {
	border-radius: 999px;
	padding: 0.45rem 0.95rem;
	font-weight: 600;
	font-size: 0.84rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.fcc-home-hero-btn-primary {
	background: linear-gradient(145deg, rgba(54, 211, 154, 0.28), rgba(54, 211, 154, 0.16));
	color: var(--fcc-mint-light) !important;
	border-color: rgba(124, 247, 199, 0.38);
}

.fcc-home-hero-btn-secondary {
	background: rgba(255, 255, 255, 0.06);
	color: var(--fcc-text-main) !important;
}

.fcc-home-hero-featured {
	padding: 0.75rem;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	overflow: hidden;
}

.fcc-home-hero-featured-img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	margin-bottom: 0.75rem;
}

.fcc-home-hero-featured-title {
	color: var(--fcc-text-main);
	font-size: 1rem;
	line-height: 1.35;
	margin: 0;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fcc-category-hero {
	background: radial-gradient(circle at 8% 6%, rgba(124, 247, 199, 0.18) 0%, rgba(224, 165, 82, 0.08) 28%, rgba(255, 255, 255, 0.03) 72%);
}

.fcc-section-title {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 700;
	color: var(--fcc-text-secondary);
	margin: 0;
}

.fcc-topic-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.fcc-topic-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.38rem 0.72rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: var(--fcc-text-main) !important;
	text-decoration: none !important;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fcc-topic-chip:hover {
	background: rgba(54, 211, 154, 0.14);
	border-color: rgba(124, 247, 199, 0.36);
	transform: translateY(-1px);
}

.fcc-featured-grid .fcc-post-card,
.fcc-latest-grid .fcc-post-card {
	height: 100%;
}

.fcc-post-card-compact .fcc-post-thumb {
	max-height: 180px;
}

.fcc-post-card-compact .fcc-post-title {
	font-size: 1.05rem;
	line-height: 1.35;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fcc-post-card-compact .fcc-post-desc {
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 0.92rem;
}

.fcc-read-more-link {
	color: var(--fcc-mint-light) !important;
	text-decoration: none !important;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.fcc-read-more-link:hover {
	color: #b8ffe4 !important;
}

.fcc-cta-btn {
	padding: 0.8rem;
	background: linear-gradient(160deg, rgba(54, 211, 154, 0.18), rgba(54, 211, 154, 0.1));
	color: var(--fcc-mint-light) !important;
	border: 1px solid rgba(124, 247, 199, 0.3);
	box-shadow: 0 14px 24px rgba(0, 0, 0, 0.32);
	text-align: center;
}

.fcc-cta-btn:hover {
	background: linear-gradient(160deg, rgba(124, 247, 199, 0.24), rgba(54, 211, 154, 0.12));
	color: #d8ffef !important;
}

.fcc-blog-wrap .btn-gray-100,
.fcc-blog-wrap .btn-outline-gray-300 {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
	color: var(--fcc-text-main);
}

.fcc-blog-wrap .form-control {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
	color: var(--fcc-text-main);
}

.fcc-blog-wrap .form-control::placeholder {
	color: var(--fcc-text-secondary);
}

.fcc-blog-wrap .form-control:focus {
	border-color: rgba(124, 247, 199, 0.45);
	box-shadow: 0 0 0 0.16rem rgba(54, 211, 154, 0.18);
}

/* Cookie consent FCC styling */
.cm,
.pm {
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.cm__body,
.pm__body {
	background: rgba(11, 15, 18, 0.92) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	box-shadow: 0 24px 44px rgba(0, 0, 0, 0.45) !important;
	border-radius: 16px !important;
	color: var(--fcc-text-main) !important;
}

.cm__title,
.pm__title,
.cm__desc,
.pm__desc,
.pm__section-title,
.pm__section-desc {
	color: var(--fcc-text-main) !important;
}

.cm__btn,
.pm__btn {
	border-radius: 12px !important;
	font-weight: 600;
	letter-spacing: 0.01em;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.cm__btn--secondary,
.pm__btn--secondary {
	background: rgba(255, 255, 255, 0.08) !important;
	color: var(--fcc-text-main) !important;
}

.cm__btn--primary,
.pm__btn--primary {
	background: linear-gradient(140deg, var(--fcc-mint), #2cbf8a) !important;
	border-color: rgba(124, 247, 199, 0.45) !important;
	color: #052d1f !important;
}

.cm__btn--primary:hover,
.pm__btn--primary:hover {
	background: linear-gradient(140deg, var(--fcc-mint-light), #4cecb6) !important;
}

@media (max-width: 991.98px) {
	.fcc-blog-page-bg {
		padding: 1.4rem 0 2.2rem;
	}

	.fcc-sidebar-sticky {
		position: static;
	}

	.fcc-article-card .card-body,
	.fcc-widget-card .card-body,
	.fcc-share-card .card-body,
	.fcc-post-card .card-body {
		padding: 1.15rem;
	}

	.fcc-hero-image {
		max-height: 300px;
	}

	.fcc-post-thumb {
		max-height: 220px;
	}

	.fcc-home-hero-featured-img {
		height: 210px;
	}
}

@media (max-width: 767.98px) {
	.fcc-blog-wrap {
		padding-left: 0.65rem;
		padding-right: 0.65rem;
	}

	.fcc-blog-grid {
		row-gap: 1rem;
	}

	.fcc-article-hero {
		padding: 0.85rem;
	}

	.fcc-hero-image,
	.fcc-post-thumb {
		max-height: 190px;
		object-fit: contain;
	}

	.fcc-article-title {
		font-size: 1.35rem;
	}

	.fcc-home-hero-title {
		font-size: 1.45rem;
	}

	.fcc-home-hero-featured-img,
	.fcc-post-card-compact .fcc-post-thumb {
		height: 170px;
		max-height: 170px;
	}

	.fcc-topic-chips {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 0.2rem;
	}

	.fcc-topic-chip {
		white-space: nowrap;
	}

	.fcc-meta-badge {
		font-size: 0.7rem;
		padding: 0.32rem 0.55rem;
	}

	.fcc-popular-thumb,
	.fcc-popular-badge {
		width: 1.9rem;
		height: 1.9rem;
	}

	.fcc-blog-post-content {
		max-width: 100%;
		line-height: 1.75;
	}
}

@media (max-width: 575.98px) {
	.fcc-blog-page-bg {
		padding: 1rem 0 1.5rem;
	}

	.fcc-article-card .card-body,
	.fcc-widget-card .card-body,
	.fcc-share-card .card-body,
	.fcc-post-card .card-body {
		padding: 0.9rem;
	}

	.fcc-hero-image,
	.fcc-post-thumb {
		max-height: 165px;
	}

	.fcc-home-hero-featured-img,
	.fcc-post-card-compact .fcc-post-thumb {
		height: 148px;
		max-height: 148px;
	}
}
/* /Custom code: FC-2026-02-26 */

