html {
	scroll-behavior: smooth;
}

body {
	width: 100%;
	height: 100%;
}

/* App */
.app {
	background: var(--gray-100);
}

.app-container {
}

.text-gradient1 {
    color: transparent;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(to right, #c135e6, #16cacc);
    background-clip: text;
    -webkit-background-clip: text;
}

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

.app-sidebar {
	min-width: 275px;
	max-width: 275px;
	margin-left: -350px;
    transition: margin .15s linear;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 101;
    height: 100%;
}

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

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

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

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

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

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

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

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

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

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

.app-sidebar-links-wrapper {
	background: var(--gray-100);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	overflow-y: scroll;
	height: 100%;
	width: calc(100% - 6px);
	border: 1px solid var(--gray-100);
	scrollbar-width: none !important;
}

.app-sidebar-links-wrapper:hover {
	scrollbar-color: var(--gray-200) var(--white) !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 0;
}

.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);
    box-shadow: 4px 4px 8px rgb(168 168 168 / 30%), -8px -8px 8px rgb(255 255 255), 0 0 15px rgba(0, 0, 0, 0.1);
}

[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: none;
	color: var(--black);
	font-weight: 500;
	box-shadow: 4px 4px 8px rgb(168 168 168 / 30%), -8px -8px 8px rgb(255 255 255), 0 0 15px rgba(0, 0, 0, 0.1);
}

[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 {
	height: 100%;
	overflow: auto;
	margin-left: 0;
	position: relative;
	flex-grow: 1;
}

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

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

.app-navbar {
	border: 1px solid var(--gray-100);
    border-radius:25px;
    box-shadow: rgba(168, 168, 168, 0.3) 4px 4px 8px, rgb(255, 255, 255) -4px -4px 8px, rgba(0, 0, 0, 0.1) 0px 0px 15px;
}

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


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

/* Footer */
.footer {
	font-size: .95rem;
}

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

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

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

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

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

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

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

canvas {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

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

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


.cursor-grab {
	cursor: grab !important;
}

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

.cursor-pointer {
	cursor: pointer;	
}

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

img {
	vertical-align: inherit !important;
}

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

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

/* Navbar custom menu */
.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;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

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

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

.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-500);
	border-color: var(--gray-300);
}

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

/* Index */
.index-pattern {
	background-image:  radial-gradient(#3C83F6 0.55px, transparent 0.55px), radial-gradient(#3C83F6 0.55px, transparent 0.55px);
	background-size: 22px 22px;
	background-position: 0 0,11px 11px;
}

[data-theme-style="dark"] .index-pattern {
	background-image: radial-gradient(#2e405d 0.55px, transparent 0.55px), radial-gradient(#103570 0.55px, transparent 0.55px);
}

.index-header {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--primary);
}

.index-subheader {
	font-size: 1.45rem;
	color: var(--gray-700);
}

.index-button {
	padding: 1.25rem 2rem;
	font-size: 1.25rem;
	font-weight: 500;
}

@media (min-width: 992px) {
	.index-button {
		padding: 1.25rem 4rem;
	}
}

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

/* Header container */
.user-avatar {
	border-radius: 50%;
	max-width: 70px;
	max-height: 70px;
}

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

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

/* 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);
	box-shadow: 4px 4px 8px rgb(168 168 168 / 30%), -4px -4px 8px rgb(255 255 255), 0 0 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.table-custom tbody tr {
	border-top: 1px solid var(--gray-200);
}

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

.table-custom tbody tr td {
	border-top: 0;
}

[data-theme-style="dark"] .table-custom tbody tr td {
}

.table-custom tbody tr {
	transition: all .3s ease-in-out;
}

.table-custom tbody tr:hover td {
}

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

/* Pricing cards */
.pricing-card {
	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, 20%, 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 */
.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-500);
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-50);
	font-size: .9rem;
	font-weight: 500;
	background: var(--white);
	transition: background .3s;
}

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

.btn-custom.active {
	color: var(--gray-800);
	border: 1px solid var(--gray-100);
	background: var(--gray-100);
    box-shadow: 4px 4px 8px rgb(168 168 168 / 30%), -4px -4px 8px rgb(255 255 255), 0 0 15px rgba(0, 0, 0, 0.1);
}

/* 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 */
.altum-file-input {
	padding: 1rem;
	background: var(--gray-100);
	border: 1px solid var(--gray-200);
	border-radius: var(--border-radius);
	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;
}

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

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

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




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

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

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

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

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

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

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

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

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





 /* Плавная пульсация кнопки */
    .pulse-btn { 
        animation: pulse 2.5s infinite;
    }

    @keyframes pulse {
        0% { 
            transform: scale(1); 
            box-shadow: 0 0 0 0 rgba(172, 172, 172, 0.7); /* #ffc107 с 70% прозрачностью */
        }
        50% { 
            transform: scale(1.05); 
            box-shadow: 0 0 15px 5px rgba(153, 153, 153, 0.4); /* #ffc107 с 40% прозрачностью */
        }
        100% { 
            transform: scale(1); 
            box-shadow: 0 0 0 0 rgba(182, 182, 182, 0.7); /* обратно к 70% */
        }
    }
    /* Добавьте эти стили */
    .animated-wave {
        animation: waveAnimation 3s ease-in-out infinite;
        background-size: 200% 100%;
    }

    @keyframes waveAnimation {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    .animated-card {
        background: linear-gradient(45deg, #7c9dff, #c135e6, #16cacc, #7c9dff);
        background-size: 300% 300%;
        animation: gradientShift 6s ease infinite;
        position: relative;
        overflow: hidden;
    }

    .animated-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1);
        z-index: 1;
    }

    .animated-card > * {
        position: relative;
        z-index: 2;
    }

    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

        .custom-card {
            position: relative;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            height: 100%;
            overflow: hidden;
            border-radius: 12px;
        }

        .custom-card-number {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .custom-card-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .custom-card-text {
            font-size: 0.9rem;
            color: #6c757d;
        }

        /* Градиенты для каждого блока */
        .custom-card.one::before,
        .custom-card.two::before,
        .custom-card.three::before {
            content: "";
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .custom-card.one::before {
            background: linear-gradient(230deg, rgba(236, 72, 153, 0.25) 0%, rgba(236, 72, 153, 0) 50%);
        }
        .custom-card.two::before {
            background: linear-gradient(230deg, rgba(34, 197, 94, 0.25) 0%, rgba(34, 197, 94, 0) 50%);
        }
        .custom-card.three::before {
            background: linear-gradient(230deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0) 50%);
        }

        /* Декор для каждого блока */
        .custom-card.one::after,
        .custom-card.two::after,
        .custom-card.three::after {
            content: "";
            position: absolute;
            top: 0; right: 0;
            width: 100%; height: 100%;
            background-repeat: repeat;
            background-size: 120px 120px;
            pointer-events: none;
            z-index: 1;
            opacity: 0.8; /* можно убрать, если нужен прям 100% цвет */
        }

        .custom-card.one::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='%23EC4899'%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='50' cy='40' r='1'/%3E%3Ccircle cx='90' cy='20' r='2'/%3E%3Ccircle cx='70' cy='80' r='1.5'/%3E%3Ccircle cx='110' cy='60' r='1'/%3E%3C/g%3E%3C/svg%3E");
        }
        .custom-card.two::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='%2322C55E'%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='50' cy='40' r='1'/%3E%3Ccircle cx='90' cy='20' r='2'/%3E%3Ccircle cx='70' cy='80' r='1.5'/%3E%3Ccircle cx='110' cy='60' r='1'/%3E%3C/g%3E%3C/svg%3E");
        }
        .custom-card.three::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='%233B82F6'%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='50' cy='40' r='1'/%3E%3Ccircle cx='90' cy='20' r='2'/%3E%3Ccircle cx='70' cy='80' r='1.5'/%3E%3Ccircle cx='110' cy='60' r='1'/%3E%3C/g%3E%3C/svg%3E");
        }

        /* Контент всегда выше градиента и декора */
        .custom-card > * {
            position: relative;
            z-index: 2;
        }


        /* Horizontal Scroll Styles */
        .testimonials-scroll-wrapper {
            position: relative;
            margin: 40px 0;
        }
        
        .testimonials-scroll-container {
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
            cursor: grab;
            padding: 20px 10px;
            margin: -20px -10px;
        }
        
        .testimonials-scroll-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari and Opera */
        }
        
        .testimonials-scroll-container:active {
            cursor: grabbing;
        }
        
        .testimonials-track {
            display: inline-flex;
            gap: 30px;
            padding: 10px 20px;
            min-width: min-content;
        }
        
        /* Testimonial Card Styles */
        .testimonial-card-wrapper {
            flex: 0 0 auto;
            width: 380px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-text {
            flex: 1;
            margin-bottom: 25px;
        }
        
        .testimonial-text p {
            font-size: 1rem;
            line-height: 1.6;
            color: #2d3436;
            margin: 0;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            z-index: 2;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
        }
        
        .avatar-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f8f9fa;
        }
        
        .author-info {
            flex: 1;
        }
        
        .author-name {
            font-weight: 600;
            font-size: 1.1rem;
            color: #2d3436;
            margin-bottom: 2px;
        }
        
        .author-role {
            font-size: 0.9rem;
            color: #636e72;
        }
        
        .testimonial-rating {
            display: flex;
            gap: 2px;
        }
        
        .star {
            color: #ffd700;
            font-size: 1.2rem;
            filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
        }
        
        /* Hover Effects */
        .hover-bubbles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .bubble {
            position: absolute;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.6s ease-out;
        }
        
        .neon-border {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(45deg, #ff6b6b, #74b9ff, #a29bfe, #fd79a8, #ffeaa7);
            background-size: 400% 400%;
            opacity: 0;
            transition: opacity 0.4s ease;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: 1;
        }
        
        /* Hover Animations */
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        
        .testimonial-card:hover .neon-border {
            opacity: 1;
            animation: neonGlow 2s ease-in-out infinite;
        }
        
        .testimonial-card:hover .bubble {
            opacity: 1;
        }
        
        .testimonial-card:hover .bubble:nth-child(1) {
            width: 80px;
            height: 80px;
            top: -20px;
            left: -20px;
            animation: floatBubble 3s ease-in-out infinite;
        }
        
        .testimonial-card:hover .bubble:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 50%;
            right: -30px;
            animation: floatBubble 3s ease-in-out infinite 0.5s;
        }
        
        .testimonial-card:hover .bubble:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: -40px;
            left: 50%;
            animation: floatBubble 3s ease-in-out infinite 1s;
        }
        
        .testimonial-card:hover .bubble:nth-child(4) {
            width: 70px;
            height: 70px;
            top: -25px;
            right: 30%;
            animation: floatBubble 3s ease-in-out infinite 1.5s;
        }
        
        .testimonial-card:hover .bubble:nth-child(5) {
            width: 90px;
            height: 90px;
            bottom: -30px;
            right: -25px;
            animation: floatBubble 3s ease-in-out infinite 2s;
        }
        
        /* Animations */
        @keyframes neonGlow {
            0%, 100% {
                background-position: 0% 50%;
                filter: hue-rotate(0deg);
            }
            50% {
                background-position: 100% 50%;
                filter: hue-rotate(180deg);
            }
        }
        
        @keyframes floatBubble {
            0%, 100% {
                transform: translateY(0) scale(1);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-20px) scale(1.1);
                opacity: 0.4;
            }
        }
        


        /* Gradient Border Component */
.gradient-border {
    position: relative;
    border-radius: 20px;
    background: transparent;
    z-index: 0;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px; /* На 2px больше основного радиуса */
    padding: 2px;
    background: linear-gradient(45deg, #ff6b6b, #74b9ff, #a29bfe, #fd79a8, #ffeaa7);
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.4s ease;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    animation: neonGlow 2s ease-in-out infinite;
}

.gradient-border:hover::before {
    opacity: 1;
}

/* Bubbles Effect - опционально */
.gradient-border-with-bubbles {
    position: relative;
}


        /* Responsive Design */
        @media (max-width: 768px) {
            .testimonial-card-wrapper {
                width: 320px;
            }
            
            .testimonial-card {
                padding: 25px;
            }
            
            .testimonials-track {
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .testimonial-card-wrapper {
                width: 280px;
            }
            
            .author-avatar {
                width: 50px;
                height: 50px;
            }
            
            .author-name {
                font-size: 1rem;
            }
            
            .author-role {
                font-size: 0.8rem;
            }
        }



    .animated-circle {
        font-size: 0.9rem;
        font-weight: 600;
        writing-mode: vertical-rl;
        width: 6rem;
        height: 6rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        position: relative;
        border-radius: 50%;
        background: white; /* Фон внутри круга */
    }

    /* Градиентный бордюр */
    .animated-circle::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        background: conic-gradient(
            from 0deg, 
            #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000
        );
        border-radius: 50%;
        animation: rotate-border 3.5s linear infinite;
        z-index: 0;
    }

    /* Маска для вырезания середины */
    .animated-circle::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #f3f4f6; /* Должен совпадать с фоном страницы */
        border-radius: 50%;
        z-index: 1;
    }

    /* Контейнер для текста */
    .animated-circle .text-content {
        position: relative;
        z-index: 2; /* Текст поверх всего */
        animation: text-bounce 0.8s ease-in-out infinite alternate;
    }

    @keyframes rotate-border {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes text-bounce {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-3px);
        }
    }


	
/* Gradient Text Component */
.gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #74b9ff, #a29bfe, #fd79a8, #ffeaa7);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: textGlow 3s ease-in-out infinite;
    position: relative;
    font-weight: 600;
}

/* Hover эффекты для текста */
.gradient-text:hover {
    animation-duration: 1.5s;
    filter: brightness(1.2);
}

/* Text Bubbles Effect - опционально */
.gradient-text-with-bubbles {
    position: relative;
    display: inline-block;
}

.text-bubbles {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    pointer-events: none;
    z-index: -1;
}

.text-bubble {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease-out;
}

/* Hover States для текста с пузырьками */
.gradient-text-with-bubbles:hover .text-bubble {
    opacity: 0.8;
}

.gradient-text-with-bubbles:hover .text-bubble:nth-child(1) {
    width: 30px; height: 30px; top: -15px; left: 10%;
    animation: textBubbleFloat 2s ease-in-out infinite;
}
.gradient-text-with-bubbles:hover .text-bubble:nth-child(2) {
    width: 20px; height: 20px; top: 50%; right: 15%;
    animation: textBubbleFloat 2s ease-in-out infinite 0.3s;
}
.gradient-text-with-bubbles:hover .text-bubble:nth-child(3) {
    width: 25px; height: 25px; bottom: -10px; left: 30%;
    animation: textBubbleFloat 2s ease-in-out infinite 0.6s;
}
.gradient-text-with-bubbles:hover .text-bubble:nth-child(4) {
    width: 35px; height: 35px; top: -5px; right: 25%;
    animation: textBubbleFloat 2s ease-in-out infinite 0.9s;
}
.gradient-text-with-bubbles:hover .text-bubble:nth-child(5) {
    width: 15px; height: 15px; bottom: -15px; right: 10%;
    animation: textBubbleFloat 2s ease-in-out infinite 1.2s;
}

/* Text Glow Animation */
@keyframes textGlow {
    0%, 100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg) brightness(1);
    }
    25% {
        background-position: 50% 100%;
        filter: hue-rotate(90deg) brightness(1.1);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(180deg) brightness(1.2);
    }
    75% {
        background-position: 50% 0%;
        filter: hue-rotate(270deg) brightness(1.1);
    }
}

@keyframes textBubbleFloat {
    0%, 100% {
        transform: translateY(0) scale(1) translateX(0);
        opacity: 0.8;
    }
    33% {
        transform: translateY(-10px) scale(1.1) translateX(5px);
        opacity: 0.6;
    }
    66% {
        transform: translateY(5px) scale(0.9) translateX(-5px);
        opacity: 0.4;
    }
}

/* Варианты цветовых схем */
.gradient-text-purple {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
}

.gradient-text-green {
    background: linear-gradient(45deg, #4facfe, #00f2fe, #43e97b, #38f9d7);
    background-size: 400% 400%;
}

.gradient-text-fire {
    background: linear-gradient(45deg, #ff0000, #ff9900, #ffff00, #ff9900, #ff0000);
    background-size: 400% 400%;
}

.gradient-text-ocean {
    background: linear-gradient(45deg, #007cf0, #00dfd8, #00b3ff, #0080ff);
    background-size: 400% 400%;
}

/* Размеры текста */
.gradient-text-lg {
    font-size: 2.5rem;
    font-weight: 700;
}

.gradient-text-md {
    font-size: 1.8rem;
    font-weight: 600;
}

.gradient-text-sm {
    font-size: 1rem;
    font-weight: 500;
}

/* Эффект свечения */
.gradient-text-glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.gradient-text-glow:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

    .generation-carousel-wrapper {
        position: relative;
        padding: 60px 0;
        overflow: hidden;
    }

    /* Фиксированный layout с тремя блоками */
    .fixed-layout {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 40px 0;
        position: relative;
        min-height: 500px;
    }

    /* Боковые секции */
    .side-section {
        width: 280px;
        height: 420px;
    }

    /* Центральная секция - фиксированная */
    .center-section {
        position: relative;
        z-index: 10;
    }

    .carousel-item {
        width: 280px;
        height: 420px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    /* Стили для разных состояний */
    .carousel-item.completed {
        opacity: 0.8;
        /* filter: blur(1px) brightness(0.9); */
        transform: scale(0.9);
    }

    .carousel-item.queued {
        opacity: 0.6;
        /* filter: blur(1px) brightness(0.9); */
        transform: scale(0.85);
    }

    .carousel-item.generating.active {
        opacity: 1;
        border-radius: 20px;
        filter: none;
        transform: scale(1);
        animation: generatingGlow 2s ease-in-out infinite alternate;
    }

    @keyframes generatingGlow {
        0% {
            box-shadow: 0 0 30px rgba(74, 226, 206, 0.4);
        }
        100% {
            box-shadow: 0 0 60px rgba(74, 226, 198, 0.8),
                    0 0 100px rgba(74, 196, 226, 0.3);
        }
    }

    /* Контейнеры изображений */
    .image-container, .generation-container, .placeholder-container {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        background: #f3f4f6;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .carousel-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        transition: opacity 0.5s ease;
    }

    .generated-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .generated-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    /* Анимация генерации */
    .ai-generation-animation {
        text-align: center;
        color: #202020;
    }

    .neural-network {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
    }

    .node {
        position: absolute;
        width: 12px;
        height: 12px;
        background: #20e7bf;
        border-radius: 50%;
        animation: nodePulse 2s ease-in-out infinite;
    }

    .node:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
    .node:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.2s; }
    .node:nth-child(3) { top: 50%; left: 50%; animation-delay: 0.4s; }
    .node:nth-child(4) { top: 80%; left: 20%; animation-delay: 0.6s; }
    .node:nth-child(5) { top: 80%; left: 80%; animation-delay: 0.8s; }

    .node::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(59, 130, 246, 0.3);
        border-radius: 50%;
        animation: nodeConnect 2s ease-in-out infinite;
    }

    @keyframes nodePulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.5); opacity: 0.7; }
    }

    @keyframes nodeConnect {
        0% { 
            width: 0; 
            height: 0; 
            transform: translate(-50%, -50%); 
        }
        50% { 
            width: 100px; 
            height: 100px; 
            transform: translate(-50%, -50%); 
        }
        100% { 
            width: 0; 
            height: 0; 
            transform: translate(-50%, -50%); 
        }
    }

    .loading-text {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #1e40af;
    }

    .progress-bar {
        width: 200px;
        height: 6px;
        background: #e2e8f0;
        border-radius: 3px;
        overflow: hidden;
        margin: 0 auto;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #3b82f6, #60a5fa);
        border-radius: 3px;
        width: 0%;
    }

    /* Подписи */
    .image-caption {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        background: rgb(255 255 255 / 44%);
        backdrop-filter: blur(20px);
        padding: 15px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        z-index: 2;
    }

    .caption-text {
        margin: 0;
        font-size: 13px;
        line-height: 1.4;
        color: #333;
        font-weight: 500;
        text-align: center;
    }

    /* Индикатор статуса */
    .generation-status {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 30px;
    }

    .status-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #64748b;
        transition: all 0.3s ease;
    }

    .status-item.active {
        color: #20e7bf;
        font-weight: 600;
    }

    .status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #cbd5e1;
        transition: all 0.3s ease;
    }

    /* Фикс для анимации в центральном блоке */
    .generation-container {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        background: #f3f4f6;
        border: 1px solid rgba(255, 255, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ai-generation-animation {
        text-align: center;
        color: #3b82f6;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }

    .neural-network {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
        flex-shrink: 0;
    }

    .loading-text {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #1e40af;
        flex-shrink: 0;
    }

    .progress-bar {
        width: 200px;
        height: 6px;
        background: #e2e8f0;
        border-radius: 3px;
        overflow: hidden;
        margin: 0 auto;
        flex-shrink: 0;
    }

    /* Убедимся, что placeholder-image занимает всю высоту */
    .placeholder-image.ai-animation {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

        /* Фикс для правого блока - абсолютное позиционирование */
    .right-section .placeholder-image {
        position: relative;
        height: 100%;
        width: 100%;
    }

    .right-section .placeholder-icon,
    .right-section .coming-soon {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .right-section .placeholder-icon {
        top: 45%;
        margin-bottom: 0;
    }

    .right-section .coming-soon {
        top: 55%;
        margin: 0;
    }

    .status-item.completed .status-dot {
        background: #10b981;
    }

    .status-item.generating .status-dot {
        background: #3b82f6;
        animation: pulseDot 1.5s ease-in-out infinite;
    }

    .status-item.queued .status-dot {
        background: #f59e0b;
    }

    @keyframes pulseDot {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.3); opacity: 0.7; }
    }

    /* Анимации */
    @keyframes fadeOut {
        0% { opacity: 1; }
        100% { opacity: 0; }
    }

    @keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
    }

    @keyframes slideFromRight {
        0% { 
            transform: translateX(50px) scale(0.85);
            opacity: 0;
        }
        100% { 
            transform: translateX(0) scale(0.85);
            opacity: 0.6;
        }
    }

    /* Адаптивность */
    @media (max-width: 968px) {
        .fixed-layout {
            gap: 20px;
        }
        
        .side-section,
        .carousel-item {
            width: 220px;
            height: 330px;
        }
    }

    @media (max-width: 768px) {
        .fixed-layout {
            flex-direction: column;
            gap: 20px;
        }
        
        .side-section,
        .carousel-item {
            width: 280px;
            height: 420px;
        }
        
        .center-section {
            order: 2;
        }
        
        .left-section {
            order: 1;
        }
        
        .right-section {
            order: 3;
        }
        
        .generation-status {
            gap: 20px;
            flex-wrap: wrap;
        }
    }
