:root {
	--primary: #22B7C6 !important;
	--bg-light: #F5F6F8 !important;
	--border-radius: 14px;
}

@font-face {
	font-family: 'Framework-Sans-Caps';
	src: url('../fonts/FrameworkSans-Caps-Bold.ttf');
	font-weight: 600;
}

@font-face {
	font-family: 'Framework-Sans';
	src: url('../fonts/FrameworkSans-Bold.ttf');
	font-weight: 600;
}

@font-face {
	font-family: 'Framework-Sans';
	src: url('../fonts/FrameworkSans-Medium.ttf');
	font-weight: 500;
}

@font-face {
	font-family: 'Framework-Sans';
	src: url('../fonts/FrameworkSans-Regular.ttf');
	font-weight: 400;
}

@font-face {
	font-family: 'Framework-Sans';
	src: url('../fonts/FrameworkSans-Light.ttf');
	font-weight: 300;
}

.container-wide {
	max-width: 100% !important;
	padding: 0 40px !important;
	display: flex;
	justify-content: space-between;
}

.bg-primary-100 {
	background: #E5F6F8 !important;
}

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

.text-primary {
	color: var(--primary) !important;
}

.btn-primary {
	background: var(--primary) !important;
	border-color: var(--primary) !important;
	color: var(--white) !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Framework-Sans-Caps, sans-serif !important;
}

body {
	font-family: Framework-Sans, sans-serif !important;
}

html {
	scroll-behavior: smooth;
}

b, strong {
	font-weight: 500;
}

.card {
	border-radius: 14px;
	border-color: #F5F7FA;
}

.card-header:first-child {
	border-top-left-radius: 13px;
	border-top-right-radius: 13px;
	background: #F5F7FA;
}

/* Font Size Classes */
.fs-10 {
	font-size: 10px !important;
}

.fs-12 {
	font-size: 12px !important;
}

.fs-14 {
	font-size: 14px !important;
}

.fs-16 {
	font-size: 16px !important;
}

.fs-18 {
	font-size: 18px !important;
}

.fs-20 {
	font-size: 20px !important;
}

.fs-24 {
	font-size: 24px !important;
}

.fs-30 {
	font-size: 30px !important;
}

.fs-36 {
	font-size: 36px !important;
}

.fs-46 {
	font-size: 46px !important;
}

/* Font Weight Classes */
.fw-100 {
	font-weight: 100 !important;
}

.fw-200 {
	font-weight: 200 !important;
}

.fw-300 {
	font-weight: 300 !important;
}

.fw-400 {
	font-weight: 400 !important;
}

/* Normal */
.fw-500 {
	font-weight: 500 !important;
}

.fw-600 {
	font-weight: 600 !important;
}

.fw-700 {
	font-weight: 700 !important;
}

/* Bold */
.fw-800 {
	font-weight: 800 !important;
}

.fw-900 {
	font-weight: 900 !important;
}

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

.bg-primary {
	background: var(--primary) !important;
}

/* App */
.app {
	background: #fff;
}

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

.app-container {
}

/* App NAVBAR */

.navbar-app li a {
	font-size: 13px;
	font-weight: 500;
	padding: 6px 16px !important;
	border-radius: 10px;
}

.navbar-app a.active {
	background: #F5F7FA;
}


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

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

.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(1.5 * var(--border-radius));
}

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

.form-control {
	border-radius: var(--border-radius);
}

.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: 1rem 0 2rem 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;
}

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

.custom-breadcrumbs > li.active {
}

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

.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 {
	min-height: 0 !important;
	background: var(--white);
	border-bottom: 1px solid var(--gray-100);
}

.navbar-main .navbar-nav > li > a {
	font-size: 14px;
	/*font-weight: 600;*/
	/*padding: 6px 12px !important;*/
	/*border-radius: 10px !important;*/
}

/*.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: 3rem;
	height: 3rem;
}

.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: #fff;
}

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

.index .navbar-main {
	background: var(--white);
	/*border-radius: 18px;*/
	/*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/
	box-shadow: none !important;
	border: none;
	padding: 0;
}

.index-container-content {
	margin-top: 4rem;
	margin-bottom: 4rem;
}

.index-container {
	width: 100%;
	padding: 0 0 4rem 0;
}

.btn-icon-round-fill {
	border-radius: 100px !important;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--primary);
	color: var(--white);
}

.btn-icon-round-fill:hover {
	color: var(--white);
}

.menu-pill-btn {
	border-radius: 100px !important;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 18px !important;
	height: 2.5rem;
	font-size: 14px;
	font-weight: 500;
	color: var(--primary) !important;
	background: var(--white);
	border: 1px solid var(--primary);
	transition: all .3s ease-in-out;
}

.index-image {
	width: 100%;
	height: auto;
	max-width: 100%;
	transition: all 0.3s ease-out;
	border-radius: 30px;
	object-fit: contain;
	max-height: 600px;
}

.index-header {
	font-size: 2rem;
	font-weight: bold;
	color: var(--black);
}

@media (min-width: 768px) {
	.index-header {
		font-size: 2rem;
	}
}

@media (min-width: 1200px) {
	.index-header {
		font-size: 3rem;
	}
}

.index-input {
	padding: 1.5rem 1rem;
}

.index-feature {
	line-height: 2.5rem;
	font-weight: 500;
	transition: background .6s;
	border-radius: 100px;
}

.index-feature a {
	color: var(--gray-800);
	text-decoration: none;
	transition: color .6s;
}

.index-feature:hover {
	background: var(--primary-100);
}

.index-feature:hover a {
	color: var(--primary-600);
}

.index-button {
	padding: 1.2rem 2.2rem;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}

.index-button-white, .index-button-white:hover {
	color: white;
}

.index-card-image {
	max-width: 100%;
	height: auto;
	object-fit: cover;
	/*box-shadow: 10px 10px 0 #ebf5ff;*/
	/*border: 1px solid var(--gray-300);*/
	/*transition: all .3s ease-in-out;*/
	border-radius: 30px !important;
}

/*.index-card-image:hover {*/
/*	box-shadow: 0 0 0 var(--gray-300);*/
/*}*/

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

.index-fade {
	position: absolute;
	background: linear-gradient(0deg, var(--body-bg), hsla(0, 0%, 100%, 0)) !important;
	bottom: 0;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
}

/* Index testimonial */
.index-testimonial-avatar {
	width: 85px;
	height: 85px;
	border-radius: 50%;
	transform: translateY(-70%);
	border: 4px solid var(--white);
	position: absolute;
	left: 50%;
	margin-left: -52px;
}

/* Index FAQ */
.index-faq svg {
	transition: all .15s;
	color: var(--primary-800);
}

/* Index call to action */
.index-cta {
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" viewBox="0 0 1920 1080" width="1920" height="1080"><defs><linearGradient gradientTransform="rotate(0, 0.5, 0.5)" x1="50%" y1="0%" x2="50%" y2="100%" id="ffflux-gradient"><stop stop-color="%230063ef" stop-opacity="1" offset="0%"></stop><stop stop-color="%23aa02b4" stop-opacity="1" offset="100%"></stop></linearGradient><filter id="ffflux-filter" x="-20%" y="-20%" width="140%" height="140%" filterUnits="objectBoundingBox" primitiveUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feTurbulence type="fractalNoise" baseFrequency="0.005 0.003" numOctaves="1" seed="131" stitchTiles="stitch" x="0%" y="0%" width="100%" height="100%" result="turbulence"></feTurbulence><feGaussianBlur stdDeviation="20 0" x="0%" y="0%" width="100%" height="100%" in="turbulence" edgeMode="duplicate" result="blur"></feGaussianBlur><feBlend mode="color-dodge" x="0%" y="0%" width="100%" height="100%" in="SourceGraphic" in2="blur" result="blend"></feBlend></filter></defs><rect width="1920" height="1080" fill="url(%23ffflux-gradient)" filter="url(%23ffflux-filter)"></rect></svg>');
	background-repeat: no-repeat;
	background-size: cover;
	color: white !important;
}

.index-cta a.btn {
	color: white;
	background: var(--dark);
	border-color: var(--dark);
	padding: 1.1rem 4rem;
	font-size: 1.15rem;
}

.index-cta a.btn:hover {
	background: var(--primary-900);
	border-color: var(--primary-900);
}

[data-theme-style="dark"] .index-cta a.btn {
	background: var(--light);
	border-color: var(--light);
}

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

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



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

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

.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;
	align-items: center;
	padding: 2.2rem 2.2rem 0 2.2rem;
	background: var(--white);
	border-bottom: 1px solid var(--gray-100);
	border-radius: var(--border-radius);
}

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

.pricing-name {
	background: var(--primary-200);
	padding: .15rem 1.25rem;
	color: var(--primary-600);
	font-size: .85rem;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: var(--border-radius);
}

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

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

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

.pricing-details {
	text-align: center;
	font-size: .85rem;
	color: var(--primary-800);
	margin-bottom: 1.5rem;
}

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

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

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

/* 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 {
	transition: all .3s ease-in-out;
	border: 1px solid var(--gray-100);
	background: var(--white);
}

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

.custom-radio-box input[type="radio"]: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);
}

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

/* Badge colors */
.badge {
	padding: 0.45em 0.9em;
}

.badge-primary {
	color: var(--primary-700);
	background: var(--primary-100);
}

[data-theme-style="dark"] .badge-primary {
	background: var(--primary-800);
	color: var(--primary-100);
}

.badge-secondary {
	color: hsl(208, 7%, 35%);
	background-color: hsl(208, 7%, 85%);
}

[data-theme-style="dark"] .badge-secondary {
	background-color: hsl(208, 7%, 35%);
	color: hsl(208, 7%, 85%);
}

.badge-success {
	color: hsla(134, 50%, 30%, 1);
	background-color: hsla(134, 50%, 85%, 1);
}

[data-theme-style="dark"] .badge-success {
	background-color: hsla(134, 50%, 30%, 1);
	color: hsla(134, 50%, 85%, 1);
}

.badge-danger {
	color: hsla(354, 70%, 35%, 1);
	background-color: hsla(354, 70%, 85%, 1);
}

[data-theme-style="dark"] .badge-danger {
	background-color: hsla(354, 70%, 35%, 1);
	color: hsla(354, 70%, 85%, 1);
}

.badge-warning {
	background-color: hsla(45, 100%, 85%, 1);
	color: hsla(40, 80%, 30%, 1);
}

[data-theme-style="dark"] .badge-warning {
	background-color: hsla(50, 10%, 20%, 1);
	color: hsla(45, 100%, 85%, 1);
}

.badge-info {
	color: hsla(188, 60%, 30%, 1);
	background-color: hsla(188, 78%, 85%, 1);
}

[data-theme-style="dark"] .badge-info {
	background-color: hsla(188, 60%, 30%, 1);
	color: hsla(188, 78%, 85%, 1);
}

.badge-light {
	color: hsla(210, 15%, 35%, 1);
	background-color: hsl(210, 17%, 95%);
}

[data-theme-style="dark"] .badge-light {
	background-color: hsla(210, 15%, 20%, 1);
	color: hsl(210, 17%, 95%);
}

.badge-dark {
	color: hsla(210, 10%, 90%, 1);
	background-color: hsla(210, 10%, 20%, 1);
}

[data-theme-style="dark"] .badge-dark {
	background-color: hsla(210, 10%, 90%, 1);
	color: hsla(210, 10%, 20%, 1);
}

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

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

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

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

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

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

@keyframes fadeIn{
	0% {
		opacity:0
	}
	to {
		opacity:1
	}
}
.framework-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);
}

.btn-light {
	background: #F5F7FA;
}


/* Blog */
.blog-post-image {
	max-height: 20rem;
	object-fit: cover;
}

.blog-post-image-small {
	height: 13rem;
	max-height: 13rem;
	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;
}

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 */
.framework-file-input {
	padding: 1rem;
	background: var(--gray-100);
	border: 1px solid var(--gray-100);
	border-radius: 0.25rem;
	cursor: pointer;
	font-size: .9rem;
}

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

.framework-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 */
.framework-file-input-preview {
	max-width: 100%;
	max-height: 68px;
	min-height: 68px;
	object-fit: cover;
}

/* File input preview */
.framework-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 {
	text-decoration: none;
}

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

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

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

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

.btn-group-custom .btn.active {
	background: var(--dark);
	color: var(--white);
}

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

/* Gradient text */
.text-gradient-primary {
	background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Gradient background */
.bg-gradient {
	animation: bg-gradient-animation 3s 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%;
	}
}

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

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



/* Nav App */
.nav-app {
	background: #F5F7FA;
	border-radius: 12px;
	padding: 3px;
}

.nav-app .nav-link {
	padding: 6px 16px;
	color: var(--black);
	border: none;
	background: none;
	font-size: 14px;
}

.nav-app .nav-link.active {
	background: #fff;
	border-radius: 10px;
	font-weight: 500;
	box-shadow: 0 0 0 .5px rgba(0, 0, 0, .04), 0 3px 1px rgba(0, 0, 0, .04), 0 3px 8px rgba(0, 0, 0, .12);
	border: none;
}

/* Buttons */
.btn {
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 500;
	border-radius: var(--border-radius) !important;
	border: none;
	transition: background-color .3s, transform .15s;
}

.btn-primary {
	background-color: var(--primary);
	color: var(--white);
}

.btn-icon-round {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50% !important;
	background-color: transparent;
	color: var(--black);
	border: 1px solid #F5F7FA !important;
	padding: 10px;
}

.btn-icon-pill {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px !important;
	background-color: #F5F7FA;
	color: var(--black);
	border: 1px solid #F5F7FA !important;
	padding: 1px 18px !important;
	height: 34px;
}
.btn-icon-pill svg {
	height: 18px;
	width: 18px;
}



/* Sticky Footer */
body.d-flex.flex-column.min-vh-100 {
	min-height: 100vh;
}

.app-container.d-flex.flex-column.min-vh-100 {
	min-height: 100vh;
}

.app-content.d-flex.flex-column.flex-grow-1 {
	flex: 1 0 auto;
}

main.flex-grow-1 {
	flex: 1 0 auto;
}

.mt-auto {
	margin-top: auto !important;
}

/* Ensure footer stays at bottom */
.footer {
	flex-shrink: 0;
}

/* App footer specific styling */
.app-footer {
	flex-shrink: 0;
}

/* Notifications Modal Styles */
#internal_notifications_modal .modal-dialog {
	max-width: 600px;
}

#internal_notifications_modal .modal-content {
	border-radius: 0.5rem;
	border: none;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#internal_notifications_modal .modal-header {
	border-bottom: 1px solid var(--gray-200);
	background: var(--gray-50);
	border-radius: 0.5rem 0.5rem 0 0;
}

#internal_notifications_modal .modal-title {
	font-weight: 600;
	color: var(--gray-900);
}

#internal_notifications_modal .modal-body {
	max-height: 400px;
	overflow-y: auto;
	padding: 1.5rem;
}

#internal_notifications_modal .modal-footer {
	border-top: 1px solid var(--gray-200);
	background: var(--gray-50);
	border-radius: 0 0 0.5rem 0.5rem;
}

/* Dark theme modal support */
[data-theme-style="dark"] #internal_notifications_modal .modal-content {
	background: var(--gray-900);
	border: 1px solid var(--gray-800);
}

[data-theme-style="dark"] #internal_notifications_modal .modal-header {
	background: var(--gray-800);
	border-bottom-color: var(--gray-700);
}

[data-theme-style="dark"] #internal_notifications_modal .modal-title {
	color: var(--white);
}

[data-theme-style="dark"] #internal_notifications_modal .modal-footer {
	background: var(--gray-800);
	border-top-color: var(--gray-700);
}

/* Notification System */
.notification {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-left: 4px solid;
	max-width: 400px;
	min-width: 300px;
	transform: translateX(100%);
	opacity: 0;
	transition: all 0.2s ease;
	animation: slideInRight 0.2s ease forwards;
}

.notification-dismissing {
	animation: slideOutRight 0.2s ease forwards;
}

.notification-success {
	border-left-color: #28a745;
}

.notification-danger {
	border-left-color: #dc3545;
}

.notification-warning {
	border-left-color: #ffc107;
}

.notification-info {
	border-left-color: #17a2b8;
}

.notification-content {
	padding: 12px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.notification-message {
	flex: 1;
	margin: 0 8px;
	font-size: 14px;
	line-height: 1.4;
}

.notification-close {
	background: none;
	border: none;
	color: #6c757d;
	cursor: pointer;
	padding: 4px;
	border-radius: 4px;
	transition: background-color 0.2s ease;
}

.notification-close:hover {
	background-color: rgba(0, 0, 0, 0.1);
	color: #495057;
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOutRight {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(100%);
		opacity: 0;
	}
}

/* Dark mode support */
[data-theme-style="dark"] .notification {
	background: #2d3748;
	color: #e2e8f0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme-style="dark"] .notification-close {
	color: #a0aec0;
}

[data-theme-style="dark"] .notification-close:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #e2e8f0;
}

/* Hide scrollbars completely in all browsers */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
	display: none;
}

/* Firefox */
html {
	scrollbar-width: none;
}

/* IE and Edge */
body {
	-ms-overflow-style: none;
}

/* Apply to all elements */
* {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

*::-webkit-scrollbar {
	display: none;
}




/* Scans */
#stlPreview {
	width: 100%;
	height: 400px;
	border: 1px solid #dee2e6;
	border-radius: 12px;
	position: relative;
}

#stlPreview canvas {
	border-radius: 11px;
}

#loadingIndicator {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.scan-description {
	max-width: 150px;
	word-wrap: break-word;
}

.edit-description-form {
	max-width: 200px;
}

/* New Card-based Layout Styles */
.scans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 0.75rem;
	margin-top: 1rem;
}

.scan-card {
	background: #fff;
	border: 1px solid #F5F7FA;
	border-radius: 8px;
	padding: 0.75rem;
	cursor: pointer;
	transition: border-color 0.2s ease;
	position: relative;
	overflow: hidden;
}

.scan-card:hover {
	border-color: #0499a6;
}

.scan-card.scan-card-active {
	border-color: #0499a6;
	border-left: 3px solid #22B7C6;
}

.scan-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 0.5rem;
}

.scan-card-icon {
	font-size: 1.25rem;
	color: #007bff;
	margin-right: 0.5rem;
}

.scan-card-actions {
	opacity: 0.8;
}

.scan-card-body {
	flex: 1;
}

.scan-card-description {
	margin-bottom: 0.5rem;
}

.scan-description-text {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.3;
	color: #495057;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.scan-card-meta {
	border-top: 1px solid #f1f3f4;
	padding-top: 0.5rem;
	margin-top: 0.5rem;
}

.scan-card-meta small {
	font-size: 0.7rem;
	display: flex;
	align-items: center;
}

.scan-card-meta i {
	width: 10px;
	text-align: center;
	margin-right: 0.25rem;
}

.edit-description-form {
	margin-bottom: 0.5rem;
}

.edit-description-form .input-group {
	max-width: 100%;
}

.edit-description-form .form-control {
	font-size: 0.8rem;
}

.btn-group-sm .btn {
	padding: 0.2rem 0.4rem;
	font-size: 0.7rem;
}

.btn-group-sm .btn i {
	font-size: 0.7rem;
}

.upload-area {
	border: 2px dashed #dee2e6;
	border-radius: 0.375rem;
	transition: all 0.3s ease;
	cursor: pointer;
	min-height: 200px;
}

.upload-area:hover {
	border-color: #007bff;
	background-color: #f8f9fa;
}

.upload-area.dragover {
	border-color: #007bff;
	background-color: #e3f2fd;
}

.upload-content {
	pointer-events: none;
}

.preview-controls {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.preview-placeholder-icon {
	opacity: 0.5;
}

@media (max-width: 768px) {
	.preview-controls {
		flex-direction: column;
		align-items: stretch;
	}

	.preview-controls .btn-group {
		justify-content: center;
	}

	.scans-grid {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.scan-card {
		padding: 0.5rem;
	}

	.scan-card-header {
		margin-bottom: 0.4rem;
	}

	.scan-card-icon {
		font-size: 1.1rem;
	}

	.scan-card-actions {
		opacity: 1;
	}

	.btn-group-sm .btn {
		padding: 0.15rem 0.3rem;
		font-size: 0.65rem;
	}

	.scan-description-text {
		font-size: 0.75rem;
	}

	.scan-card-meta small {
		font-size: 0.65rem;
	}

	.edit-description-form .form-control {
		font-size: 0.75rem;
	}
}

.btn-playground {
	background-color: #F5F7FA;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	font-size: 0.875rem;
	border-radius: 0.375rem;
	transition: background-color 0.2s ease;
	height: 26px;
	padding: 0 12px !important;
	margin-right: 6px;
}

.btn-playground svg {
	width: 1rem;
	height: 1rem;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid #e9ecef;
	z-index: 1000;
	padding: 0.5rem 0;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

[data-theme-style="dark"] .mobile-bottom-nav {
	background: #2d3748;
	border-top-color: #4a5568;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-bottom-nav-container {
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 100%;
	padding: 0 1rem;
}

.mobile-bottom-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #6c757d;
	padding: 0.5rem;
	border-radius: 0.5rem;
	transition: all 0.2s ease;
	min-width: 60px;
}

.mobile-bottom-nav-item:hover {
	color: var(--primary);
	text-decoration: none;
}

.mobile-bottom-nav-item.active {
	color: var(--primary);
	background-color: rgba(var(--primary-rgb), 0.1);
}

.mobile-bottom-nav-item i {
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
}

.mobile-bottom-nav-label {
	font-size: 0.75rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}

/* Add bottom padding to app content to account for mobile nav */
@media (max-width: 991px) {
	.app-content {
		padding-bottom: 5rem;
	}
}

/* Admin Panel Styles */
.admin-container {
	height: 100%;
}

.admin-sidebar {
	min-width: 275px;
	max-width: 275px;
	margin-left: -350px;
	transition: margin .15s linear;
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 101;
	height: 100vh !important;
	border: none;
	border-right: 1px solid var(--gray-200);
}

[dir="rtl"] .admin-sidebar {
	margin-left: initial;
	left: initial;
	right: 0;
	margin-right: -350px;
}

body.admin-sidebar-opened .admin-sidebar {
	margin-left: 0;
}

[dir="rtl"] body.admin-sidebar-opened .admin-sidebar {
	margin-left: initial;
	margin-right: 0;
}

@media (min-width: 992px) {
	.admin-sidebar {
		margin-left: 0;
	}

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

.admin-sidebar-links-wrapper {
	background: var(--white);
	border-radius: .4rem;
	padding: 1.5rem;
	overflow-y: scroll;
	height: 100vh !important;
	scrollbar-width: none;
}

.admin-sidebar-links-wrapper:hover {
	width: 100%;
	scrollbar-width: initial;
}

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

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

.admin-sidebar-links-wrapper:hover::-webkit-scrollbar {
	width: 8px;
}

.admin-sidebar-links-wrapper:hover::-webkit-scrollbar-track {
	width: 8px;
}

.admin-sidebar-links > .divider-wrapper {
	width: 100%;
	padding: 0 calc(0.75rem - 8px) 0 0.75rem;
	margin: 1rem 0;
}

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

.admin-sidebar-title {
	display: flex;
	align-items: center;
	justify-content: center;
}

.admin-sidebar-title a {
	color: var(--gray-900);
	font-weight: 600;
}

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

.admin-sidebar-title img {
	margin-bottom: 1.15rem;
}

.admin-sidebar-title div {
	margin-bottom: 1.5rem;
}

.admin-sidebar-links {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0;
	margin: 0;
}

.admin-sidebar-links li {
	padding: .25rem 0;
	transition: background .3s linear;
	border-radius: .4rem;
}

.admin-sidebar-links li:hover:not(.active) {
	background:var(--gray-200)
}

.admin-sidebar-links li > a {
	color: var(--gray-800);
	font-size: .95rem;
	font-weight: 450;
}

.admin-sidebar-links li > a svg {
	color: var(--gray-600);
}

.admin-sidebar-links li.active {
	background:var(--primary);
}

.admin-sidebar-links li.active > a, .admin-sidebar-links li.active > a svg {
	color: var(--white);
}

[data-theme-style="dark"] .admin-sidebar-links li.active > a, [data-theme-style="dark"] .admin-sidebar-links li.active > a svg {
	color: var(--black);
}

.admin-sidebar hr {
	border-top: 1px solid var(--gray-100);
}

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

.admin-content {
	height: 100%;
	overflow: auto;
	margin-left: 0;
	position: relative;
}

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

@media (min-width: 992px) {
	.admin-content {
		margin-left: 275px;
	}
	[dir="rtl"] .admin-content {
		margin-left: initial;
		margin-right: 275px;
	}
}

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

/* Top Navbar */
.admin-navbar-top {
	background: var(--white);
}

@media (min-width: 992px) {
	.admin-navbar-top {
		display: none;
	}
}

.admin-navbar-logo-top {
	max-height: 2rem;
	height: 2rem;
}

.admin-avatar {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	vertical-align: middle !important;
}

.custom-control-input:checked~.custom-control-label::before {
	background-color: var(--primary);
	border-color: var(--primary);
}

/* Footer Vendor */
.footer-vendor img {
	max-height: 40px;
	height: 40px;
}


