html {
	scroll-behavior: smooth;
}

/* 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: calc(var(--border-radius)*2);
	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;
}

.input-group-prepend select.custom-select.input-group-text {
	font-size: 1rem;
}

/* Input group button */
.input-group > .input-group-append > .btn {
	font-size: .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.2rem;
    height: 2.2rem;
	filter: saturate(.75);
	transition: filter .3s;
}

.footer-social-wrapper:hover {
	filter: saturate(1);
}

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

/* App footer */
.app-footer {
	border: 1px solid var(--gray-100);
	border-radius: calc(2*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 */
.user-select-none {
	user-select: none;
}

.font-size-little-small {
    font-size: .95rem;
}

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

.font-size-smaller {
	font-size: 0.875rem;
}

.font-size-xs {
	font-size: .75rem;
}

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

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

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

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

.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);
	padding: .75rem 1rem;
}

[data-theme-style="dark"] .navbar-main {
    background: var(--white);
}

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

.navbar-expand-lg .navbar-nav .nav-link {
	padding-top: .75rem;
	padding-bottom: .75rem;
}

@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 1rem;
		padding-left: 1rem;
	}
}

.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: var(--gray-50);
}

[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: calc(2.5 * var(--border-radius));
}

.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-container {
	width: 100%;
}

.splash-page-preview-panel {
	width: 100%;
	max-width: 100%;
}

.splash-page-preview-panel__header {
	width: 100%;
	max-width: 28rem;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 1200px) {
	.biolink-preview-column {
		align-self: flex-start;
		position: sticky;
		top: calc(var(--app-topbar-height, 64px) + 1rem);
		z-index: 5;
	}

	.splash-page-preview-column {
		align-self: flex-start;
		position: sticky;
		top: calc(var(--app-topbar-height, 64px) + 1rem);
		z-index: 5;
	}

	.splash-page-preview-panel {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.biolink-preview-container {
		display: flex;
		justify-content: flex-end;
	}

	.biolink-preview.sticky {
		top: calc(var(--app-topbar-height, 64px) + 1rem);
	}
}

.biolink-preview-phone-scale {
	--biolink-preview-outer-width: 414px;
	--biolink-preview-outer-height: 872px;
	width: var(--biolink-preview-outer-width);
	max-width: 100%;
	margin: 0 auto;
}

@media (max-width: 440px) {
	.biolink-preview-phone-scale {
		transform: scale(min(1, calc((100vw - 2rem) / var(--biolink-preview-outer-width))));
		transform-origin: top center;
		margin-bottom: calc(var(--biolink-preview-outer-height) * (min(1, calc((100vw - 2rem) / var(--biolink-preview-outer-width))) - 1));
	}
}

.biolink-preview-phone {
	position: relative;
	display: inline-block;
	padding: 13px 11px;
	--biolink-preview-device-width: 390px;
	--biolink-preview-device-height: 844px;
	background: linear-gradient(165deg, #5a5a5e 0%, #3a3a3c 8%, #1c1c1e 55%, #0a0a0c 100%);
	border-radius: 3.35rem;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.08),
		0 0 0 2px #121214,
		0 2px 4px rgba(0, 0, 0, 0.2),
		0 20px 40px -10px rgba(0, 0, 0, 0.45),
		0 40px 80px -20px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.14),
		inset 0 -2px 6px rgba(0, 0, 0, 0.35);
}

.biolink-preview-phone::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.12) 0%,
		rgba(255, 255, 255, 0) 28%,
		rgba(255, 255, 255, 0) 72%,
		rgba(255, 255, 255, 0.04) 100%
	);
	pointer-events: none;
	z-index: 4;
}

.biolink-preview-phone-btn {
	position: absolute;
	background: linear-gradient(180deg, #48484a 0%, #2c2c2e 45%, #1c1c1e 100%);
	border-radius: 2px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 1px 2px rgba(0, 0, 0, 0.4);
	z-index: 1;
	pointer-events: none;
}

.biolink-preview-phone-btn--silent {
	left: -3px;
	top: 108px;
	width: 3px;
	height: 28px;
	border-radius: 2px 0 0 2px;
}

.biolink-preview-phone-btn--volume-up {
	left: -3px;
	top: 158px;
	width: 3px;
	height: 46px;
	border-radius: 2px 0 0 2px;
}

.biolink-preview-phone-btn--volume-down {
	left: -3px;
	top: 214px;
	width: 3px;
	height: 46px;
	border-radius: 2px 0 0 2px;
}

.biolink-preview-phone-btn--power {
	right: -3px;
	top: 178px;
	width: 3px;
	height: 64px;
	border-radius: 0 2px 2px 0;
}

.biolink-preview-iframe-container {
	overflow: hidden;
	width: var(--biolink-preview-device-width);
	height: var(--biolink-preview-device-height);
	border-radius: 2.35rem;
	border: none;
	position: relative;
	background: #000;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.06),
		inset 0 0 12px rgba(0, 0, 0, 0.8);
}

@media (max-width: 575px) {
	.biolink-preview-column {
		overflow-x: auto;
		padding-bottom: 0.5rem;
	}

	.biolink-preview-container {
		justify-content: center !important;
	}
}

.biolink-preview-phone-notch {
	position: absolute;
	top: 11px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 32px;
	background: #000;
	border-radius: 18px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
	pointer-events: none;
}

@media (min-width: 768px) {
	.biolink-preview-phone-notch {
		width: 126px;
		height: 34px;
		top: 12px;
	}
}

.biolink-preview-phone-camera {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #1e4a6e 0%, #0d1f30 55%, #050a10 100%);
	box-shadow:
		inset 0 0 2px rgba(255, 255, 255, 0.25),
		0 0 0 1px rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
	.biolink-preview-phone-camera {
		width: 12px;
		height: 12px;
	}
}

.biolink-preview-iframe-screen {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 2.35rem;
	overflow: hidden;
	background: #000;
}

.biolink-preview-phone-status-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 10px 18px 0;
	min-height: 46px;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	pointer-events: none;
}

.biolink-preview-phone-status-bar::before {
	content: '';
	position: absolute;
	inset: 0;
	background: transparent;
	z-index: -1;
}

@media (min-width: 768px) {
	.biolink-preview-phone-status-bar {
		padding: 11px 22px 0;
		min-height: 48px;
	}
}

.biolink-preview-phone-status-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1px;
	min-width: 72px;
	padding-top: 1px;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.85), 0 1px 2px rgba(0, 0, 0, 0.65);
}

.biolink-preview-phone-time {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0.01em;
	font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
	.biolink-preview-phone-time {
		font-size: 14px;
	}
}

.biolink-preview-phone-date {
	font-size: 10px;
	font-weight: 500;
	line-height: 1.2;
	opacity: 0.92;
	letter-spacing: 0.01em;
}

@media (min-width: 768px) {
	.biolink-preview-phone-date {
		font-size: 11px;
	}
}

.biolink-preview-phone-status-right {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 72px;
	justify-content: flex-end;
	padding-top: 2px;
	filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.75));
}

@media (min-width: 768px) {
	.biolink-preview-phone-status-right {
		gap: 7px;
		padding-top: 3px;
	}
}

.biolink-preview-phone-signal {
	display: inline-flex;
	align-items: flex-end;
	gap: 1.5px;
	height: 11px;
}

.biolink-preview-phone-signal i {
	display: block;
	width: 3px;
	border-radius: 1px;
	background: #fff;
}

.biolink-preview-phone-signal i:nth-child(1) { height: 4px; opacity: 0.45; }
.biolink-preview-phone-signal i:nth-child(2) { height: 6px; opacity: 0.65; }
.biolink-preview-phone-signal i:nth-child(3) { height: 8px; opacity: 0.85; }
.biolink-preview-phone-signal i:nth-child(4) { height: 10px; }

.biolink-preview-phone-wifi {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 11px;
}

.biolink-preview-phone-wifi svg {
	width: 100%;
	height: 100%;
	fill: #fff;
}

.biolink-preview-phone-battery {
	display: inline-flex;
	align-items: center;
	gap: 0;
	height: 11px;
}

.biolink-preview-phone-battery-body {
	position: relative;
	width: 22px;
	height: 11px;
	border: 1.5px solid rgba(255, 255, 255, 0.95);
	border-radius: 3px;
	box-sizing: border-box;
	padding: 1px;
}

.biolink-preview-phone-battery-level {
	display: block;
	width: 82%;
	height: 100%;
	border-radius: 1px;
	background: linear-gradient(180deg, #b8f094 0%, #7ad648 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.biolink-preview-phone-battery-cap {
	width: 2px;
	height: 5px;
	margin-left: 1px;
	border-radius: 0 1px 1px 0;
	background: rgba(255, 255, 255, 0.95);
}

.biolink-preview-phone-home-indicator {
	position: absolute;
	bottom: 7px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 4px;
	background: rgba(255, 255, 255, 0.88);
	border-radius: 3px;
	z-index: 3;
	pointer-events: none;
	box-shadow: 0 0 4px rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
	.biolink-preview-phone-home-indicator {
		width: 134px;
		height: 5px;
		bottom: 8px;
	}
}

.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;
	z-index: 2;
}

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

/* 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;
	}

	.biolink_block .card-body > .d-flex.align-items-center {
		position: relative;
		padding-left: 2rem;
	}

	.biolink_block .custom-row-side-controller {
		right: auto;
		left: -0.625rem;
		top: 50%;
		transform: translateY(-50%);
	}

	[dir="rtl"] .biolink_block .card-body > .d-flex.align-items-center {
		padding-left: 0;
		padding-right: 2rem;
	}

	[dir="rtl"] .biolink_block .custom-row-side-controller {
		left: auto;
		right: -0.625rem;
	}
}

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

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

/* 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: calc(2*var(--border-radius));
	border: 1px solid var(--gray-100);
}

.table-custom {
	margin-bottom: 0;
	background: var(--white);
}

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

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

[data-theme-style="dark"] .table-custom thead th {
	color: var(--gray-800)
}

.table-custom td {
	padding: 1.25rem 1.25rem;
	vertical-align: middle;
}

.table-custom tbody tr td {
	border-top: 1px solid 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-600);
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-100) !important;
	font-size: .9rem;
	font-weight: 500;
	background: var(--white);
	transition: background .3s;
}

.btn-custom:hover {
	color: var(--gray-800);
	background: var(--gray-200);
}

.btn-custom.active {
	color: var(--gray-900);
	background: var(--gray-300);
}

/* Contact */
.contact-icon-wrapper {
	width: 35px;
	height: 35px;
	font-size: .8rem;
	flex-shrink: 0;
}

/* Contact */
.contact-icon-wrapper {
	width: 35px;
	height: 35px;
	font-size: .8rem;
	flex-shrink: 0;
}

/* Pages/ Resources */
.page-category-icon-wrapper {
	width: 4rem;
	height: 4rem;
	flex-shrink: 0;
}

.popular-page-icon-wrapper {
	width: 2.75rem;
	height: 2.75rem;
	flex-shrink: 0;
}
/* Blog */
.blog-post-image {
	max-height: 20rem;
	object-fit: cover;
}

.blog-post-image-small {
	height: 13rem;
	max-height: 13rem;
	object-fit: cover;
}

.blog-post-image-popular {
	width: 3rem;
	height: 3rem;
	object-fit: cover;

}

.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;
}

/* Payment channel settings — compact checkout-style grid */
.payment-channel-category-title {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gray-600, #64748b);
	margin-bottom: 0.625rem;
}

.payment-channel-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.5rem;
	padding: 0.625rem 0.5rem;
	border: 1.5px solid var(--gray-200, #e2e8f0);
	border-radius: 0.625rem;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	margin-bottom: 0;
	position: relative;
	min-height: 5.75rem;
	height: 100%;
	background: var(--white, #fff);
}

.payment-channel-option:hover {
	border-color: #93c5fd;
	background: var(--gray-50, #f8fafc);
}

.payment-channel-option.selected {
	border-color: var(--primary);
	background: rgba(var(--primary-rgb, 59, 130, 246), 0.06);
	box-shadow: 0 0 0 0.12rem rgba(var(--primary-rgb, 59, 130, 246), 0.08);
}

.payment-channel-icon {
	width: 2rem;
	height: 2rem;
	border-radius: 0.5rem;
	background: var(--white, #fff);
	border: 1px solid var(--gray-200, #e2e8f0);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	color: var(--gray-500, #94a3b8);
	font-size: 0.875rem;
}

.payment-channel-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.2rem;
}

.payment-channel-name {
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--gray-800, #1e293b);
	word-break: break-word;
	width: 100%;
}

.payment-channel-check {
	position: absolute;
	top: 0.45rem;
	right: 0.45rem;
	width: 1.125rem;
	height: 1.125rem;
	border-radius: 9999px;
	border: 1.5px solid var(--gray-300, #cbd5e1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: transparent;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.payment-channel-option.selected .payment-channel-check {
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
}

.payment-channel-option:not(.selected) .payment-channel-check {
	border-color: var(--gray-300, #cbd5e1);
	background: transparent;
	color: transparent;
}

.stores-subnav .nav-link {
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.5rem 0.875rem;
	border-radius: 9999px;
	color: var(--gray-600, #64748b);
}

.stores-subnav .nav-link.active {
	background: var(--primary);
	color: #fff;
}

.store-product-thumb {
	width: 56px;
	height: 56px;
	border-radius: 0.625rem;
	border: 1px solid var(--gray-200, #e2e8f0);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
	background: #fff;
}

.store-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.store-product-type-option {
	display: block;
	border: 1.5px solid var(--gray-200, #e2e8f0);
	border-radius: 0.75rem;
	padding: 0.875rem;
	cursor: pointer;
	height: 100%;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.store-product-type-option:hover {
	border-color: #93c5fd;
	background: var(--gray-50, #f8fafc);
}

.store-product-type-option.selected {
	border-color: var(--primary);
	background: rgba(var(--primary-rgb, 59, 130, 246), 0.06);
}

.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);
}

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

.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);
}

/* 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-user-avatar-small {
	width: 40px;
	height: 40px;
	border: 3px solid var(--gray-200);
	transition: all .3s;
}

.team-user-avatar-small:hover {
	transform: scale(1.1);
	border-color: var(--primary-300);
}

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

.admin-impersonate-banner.team-delegate-access-wrapper {
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	z-index: 102;
	margin: 0;
	border-radius: 0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	animation: ac-fade-in-down 0.3s ease-in forwards;
}

body.has-admin-impersonate {
	--app-topbar-height: 108px;
}

@media (min-width: 1025px) {
	.admin-impersonate-banner.team-delegate-access-wrapper {
		left: var(--adm-side-width, 260px);
		transition: left 0.2s ease;
	}

	.app-wrapper.toggled .admin-impersonate-banner.team-delegate-access-wrapper {
		left: var(--adm-side-collapsed, 76px);
	}

	.app-wrapper.toggled.sidebar-hovered .admin-impersonate-banner.team-delegate-access-wrapper {
		left: var(--adm-side-width, 260px);
	}
}

@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));
}

.api-widget-icon {
	width: 2.5rem;
	height: 2.5rem;
}

/* 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 0 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;
}

/* Static site AI */
.animated-bg-wrapper {
	position: relative;
	display: inline-block;
}

.animated-bg-wrapper:hover .animated-shadow-gradient {
	filter: blur(7px) saturate(120%);
	opacity: 0.8;
}

.animated-shadow-gradient {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: -1;
	filter: blur(5px) saturate(105%);
	opacity: 0.5;
	overflow: hidden;
	transition: .3s all;
}

[data-theme-style="dark"] .animated-shadow-gradient {
	opacity: 0.5;
	filter: blur(5px) saturate(95%);
}

.animated-shadow-gradient::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100vmax;
	height: 100vmax;
	transform: translate(-50%, -50%) rotate(0deg) scale(1.05);
	background: conic-gradient(
			from 0deg,
			deeppink,
			purple,
			blue,
			cyan,
			lime,
			yellow,
			orange,
			deeppink
	);
	animation: index_hero_gradient_animation 10s linear infinite alternate;
}

@keyframes index_hero_gradient_animation {
	to {
		transform: translate(-50%, -50%) rotate(360deg) scale(1.1);
	}
}

/* Background animated gradient */
.bg-animated-gradient {
	animation: bg-gradient-animation 5s ease infinite alternate !important;
	background: linear-gradient(60deg,#f79533,#f37055,#ef4e7b,#a166ab,#5073b8,#1098ad,#07b39b,#6fba82);
	background-size: 300% 300%;
}

@keyframes bg-gradient-animation {
	0% {
		background-position: 0 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}

/* Hide radio/checkbox inside btn-group-toggle when wrapped in grid columns */
.btn-group-toggle label.btn input[type="radio"],
.btn-group-toggle label.btn input[type="checkbox"] {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	pointer-events: none;
}

/* Dashboard welcome card */
.dashboard-welcome-card {
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: calc(var(--border-radius) * 2);
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, #ffffff 45%, rgba(124, 58, 237, 0.06) 100%);
	overflow: hidden;
}

.dashboard-welcome-card__blob {
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	filter: blur(42px);
	opacity: 0.5;
	pointer-events: none;
}

.dashboard-welcome-card__blob--primary {
	top: -90px;
	right: -30px;
	background: rgba(59, 130, 246, 0.35);
}

.dashboard-welcome-card__blob--accent {
	bottom: -100px;
	left: 12%;
	background: rgba(124, 58, 237, 0.22);
}

.dashboard-welcome-card__avatar {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border: 3px solid #ffffff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.dashboard-welcome-card__title {
	color: var(--gray-900, #0f172a);
	letter-spacing: -0.02em;
}

.dashboard-welcome-card__plan-badge {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.28);
	color: var(--gray-700, #334155);
	font-weight: 600;
	font-size: 0.8125rem;
}

.dashboard-welcome-card__actions .btn-lg {
	border-radius: calc(var(--border-radius) * 1.5);
	font-weight: 600;
	padding-top: 0.65rem;
	padding-bottom: 0.65rem;
}

.dashboard-welcome-card__actions {
	display: grid;
	gap: 0.75rem;
	max-width: 320px;
	margin-left: auto;
}

.dashboard-welcome-card__btn-telegram {
	background: #29b6f6;
	border: 1px solid #29b6f6;
	color: #ffffff;
	font-weight: 600;
}

.dashboard-welcome-card__btn-telegram:hover,
.dashboard-welcome-card__btn-telegram:focus {
	background: #039be5;
	border-color: #039be5;
	color: #ffffff;
}

.dashboard-welcome-card__btn-telegram--connected {
	background: #e0f2fe;
	border-color: #7dd3fc;
	color: #0369a1;
}

.dashboard-welcome-card__btn-telegram--connected:hover,
.dashboard-welcome-card__btn-telegram--connected:focus {
	background: #bae6fd;
	border-color: #38bdf8;
	color: #0c4a6e;
}

.dashboard-welcome-card__btn-support {
	grid-column: 1 / -1;
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	border: 1px solid #2563eb;
	color: #ffffff;
	font-weight: 600;
}

.dashboard-welcome-card__btn-support:hover,
.dashboard-welcome-card__btn-support:focus {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	border-color: #1d4ed8;
	color: #ffffff;
}

.dashboard-telegram-connect-modal__qr {
	max-width: 220px;
}

@media (min-width: 576px) {
	.dashboard-welcome-card__actions {
		grid-template-columns: 1fr 1fr;
	}
}

/* Dashboard stat cards */
.dashboard-stat-cards {
	margin-top: 0.25rem;
}

.dashboard-stat-card {
	background: #ffffff;
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: calc(var(--border-radius) * 2);
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
	padding: 1.25rem 1.35rem;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dashboard-stat-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
	border-color: rgba(59, 130, 246, 0.22);
	color: inherit;
	text-decoration: none;
}

.dashboard-stat-card__icon {
	width: 44px;
	height: 44px;
	font-size: 1.05rem;
	border-radius: calc(var(--border-radius) * 1.5);
}

.dashboard-stat-card__value {
	color: var(--gray-900, #0f172a);
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.dashboard-stat-card__label {
	font-weight: 500;
	line-height: 1.35;
}

/* Dashboard chart card */
.dashboard-chart-card {
	background: #ffffff;
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: calc(var(--border-radius) * 2);
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
	padding: 1.35rem 1.35rem 1.15rem;
}

.dashboard-chart-card__icon {
	width: 44px;
	height: 44px;
	border-radius: calc(var(--border-radius) * 1.5);
	background: #eef2ff;
	color: #6366f1;
	font-size: 1.05rem;
}

.dashboard-chart-card__title {
	color: var(--gray-900, #0f172a);
	letter-spacing: -0.02em;
}

.dashboard-chart-card__meta {
	gap: 0.75rem;
}

.dashboard-chart-card__legend {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 1rem;
	margin-right: 0.25rem;
}

.dashboard-chart-card__legend-item {
	display: inline-flex;
	align-items: center;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--gray-600, #475569);
}

.dashboard-chart-card__legend-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	margin-right: 0.45rem;
	flex-shrink: 0;
}

.dashboard-chart-card__legend-dot--pageviews {
	background: var(--primary, #3b82f6);
}

.dashboard-chart-card__legend-dot--visitors {
	background: var(--gray-400, #94a3b8);
}

.dashboard-chart-card__help {
	line-height: 1;
}

.dashboard-chart-card__body {
	margin-top: 0.35rem;
}

.dashboard-chart-card__chart.chart-container {
	height: 300px;
}

.dashboard-chart-card__loading.chart-container {
	height: 280px;
}

.dashboard-chart-card__empty .d-flex.flex-column {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

@media (min-width: 768px) {
	.dashboard-chart-card {
		padding: 1.5rem 1.6rem 1.25rem;
	}

	.dashboard-chart-card__chart.chart-container {
		height: 320px;
	}
}
