
/* Карточки */
.complex-card {
    background: var(--card-bg);
    border-radius: var(--menu-border-radius);
    margin-bottom: 10px;
    padding: 6px;
    box-shadow: var(--menu-shadow);
    transition: var(--menu-transition);
    overflow: hidden;
    position: relative;
}

.complex-card:hover {
    box-shadow: var(--menu-hover-shadow);
    transform: scale(0.98);
}

.complex-name {
    font-size: var(--menu-font-size);
    font-weight: 500;
    color: var(--text-color);
    padding: var(--menu-item-padding);
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--menu-transition);
    border-radius: 6px;
    position: relative;
    margin: 2px 0;
}

.complex-name i {
    font-size: var(--menu-icon-size);
    color: var(--primary-color);
    margin-right: 10px;
    transition: var(--menu-transition);
}

.complex-name:hover {
    background: var(--menu-hover-bg);
    color: var(--primary-color);
}

.complex-name:hover i {
    transform: scale(1.1);
}

.complex-name.selected {
    background: #e6f0fa;
    font-weight: 600;
    color: #4a607a;
    box-shadow: inset 0 0 0 1px var(--primary-color);
}

.complex-name.selected i {
    color: #4a607a;
}

.complex-name, .building-item, .contractor-item {
    border-bottom: 1px solid #eee;
}

.complex-arrow {
    margin-left: auto;
    color: var(--text-light);
    transition: transform 0.2s ease;
}

.clear-filter {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    margin-left: auto;
    opacity: 0.7;
    transition: var(--menu-transition);
}

.clear-filter:hover {
    color: var(--overdue-color);
    opacity: 1;
    transform: scale(1.2);
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 14px;
    background: var(--card-bg);
    border-radius: 6px;
    margin-top: 4px;
}

.stat-item {
    flex: 1;
    min-width: 50px;
    text-align: center;
    padding: 6px;
    background: var(--menu-hover-bg);
    border-radius: 6px;
    transition: var(--menu-transition);
}

.stat-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
}

.stat-item.red .stat-value {
    color: var(--overdue-color);
}

.stat-item.yellow .stat-value {
    color: var(--resolved-color);
}

.status-lines {
    display: flex;
    gap: 6px;
    padding: 6px 14px;
    flex-wrap: wrap;
}

.status-line {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    color: white;
    transition: var(--menu-transition);
}

.status-line.green {
    background: var(--success-color);
}

.status-line.gray {
    background: var(--text-light);
}

.status-line.red {
    background: var(--overdue-color);
}

/* Progress Block Styling */
.progress-block-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 12px;
    margin: 4px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.progress-block-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    width: 100%;
}

.progress-title-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.progress-icon {
    font-size: 16px;
    color: var(--primary-color);
    margin-right: 8px;
}

.progress-title {
    font-size: clamp(13px, 2vw, 14px);
    font-weight: 500;
    color: var(--text-color);
}

.progress-value-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.progress-value {
    font-size: clamp(14px, 2.2vw, 15px);
    font-weight: 600;
    color: var(--text-color);
}

.progress-percent {
    font-size: clamp(12px, 1.8vw, 13px);
    color: var(--text-light);
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    width: 100%;
}

.progress-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.progress-fill.yellow {
    background: var(--resolved-color);
}

.progress-fill.red {
    background: var(--overdue-color);
}

.avn-global-filter {
    padding: 15px;
    background: var(--avn-bg, #ffffff);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color, #e2e8f0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avn-global-filter .filter-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #495057;
}

.avn-global-filter .filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.avn-global-filter .filter-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.avn-global-filter .filter-item input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
}

.avn-global-filter .filter-item label {
    font-size: 14px;
    color: #495057;
    cursor: pointer;
}

/* Замечания */
.issue-card {
    background: var(--card-bg);
    border-radius: 4px;
    padding: 6px;
    position: relative;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.issue-card.issue-deleted {
    background-color: #f5f5f5;
    border-color: #474545;
    color: #9e9e9e;
    position: relative;
}

.issue-card.issue-deleted::after {
    content: "Не обнаружено в выгрузке - скорее всего устранено";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #616161;
    color: white;
    padding: 6px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    z-index: 10;
}

.issue-card.issue-deleted:hover::after {
    opacity: 1;
}

.issue-card.selected {
    border-color: var(--primary-color);
    background-color: #e6f7ff;
}

.issue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.issue-header-tags {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 4px;
}

.issue-id {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 13px;
}

.issue-status {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.issue-details-main, .issue-details {
    font-size: 13px;
    line-height: 1.4;
}

.issue-details-main div, .issue-details div {
    margin-bottom: 4px;
}

.issue-label {
    font-weight: 500;
    color: var(--text-light);
    margin-right: 4px;
}

.status-open {
    background-color: #e3f2fd;
    color: #1976d2;
}

.status-approved {
    background-color: #e3f2fd;
    color: #1976d2;
}

.status-not-cheked {
    background-color: #ffebee;
    color: #d32f2f;
}

.status-organization {
    background-color: #f1eae0;
    color: #736d67;
}

.status-resolved {
    background-color: #f1eae0;
    color: #f39c12;
}

.status-overdue {
    background-color: #ffebee;
    color: #d32f2f;
}

.status-rejected {
    background-color: #ffebee;
    color: #d32f2f;
}

.overdue-days-glow {
    color: var(--overdue-color);
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    background-color: rgba(231, 76, 60, 0.1);
}

.subordinates-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    padding: 8px 14px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(to bottom, #f8f9fa, var(--card-bg));
    margin: 0;
    letter-spacing: 0.5px;
}

.subordinate-item {
    background: white;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subordinate-info {
    display: flex;
    flex-direction: column;
}

.subordinate-name {
    font-weight: 500;
    font-size: 16px;
}

.subordinate-item:hover {
    background-color: #f8f9fa;
}

.subordinate-arrow {
    margin-left: auto;
    color: #999;
}

.contractor-item {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    justify-content: space-between;
}

.building-item {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    justify-content: space-between;
}

.building-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.summary-card {
    background: #f0f4ff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-complexes-card {
    max-height: 350px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.top-complexes-wrapper {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.top-complexes-card.collapsed #top-complexes-list {
    max-height: 100%;
}

.top-complexes-list .complex-card {
    max-height: 80%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #fff;
    margin-bottom: 10px;
    padding: 10px;
    transition: box-shadow 0.3s ease;
}

.top-complexes-list .complex-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.top-complexes-list {
    flex-grow: 1;
    overflow-y: hidden;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.complex-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.work-stats-card {
    background: var(--card-bg-second);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    position: relative;
}

.work-stats-card.collapsed .issues-wrapper {
    max-height: 200px;
    overflow: hidden;
    padding-bottom: 15px;
}

.work-stats-card .issues-wrapper {
    position: relative;
    max-height: none;
    transition: max-height 0.3s ease;
}

.work-stats-card .issues-list {
    max-height: 170px;
    min-height: 100px;
    overflow-y: hidden;
    transition: max-height 0.5s ease-in-out;
}

.work-stats-card:not(.collapsed) .issues-list {
    max-height: 450px;
    overflow-y: auto;
    transition: max-px ease;
}

.work-stats-card {
    max-height: 0px;

    background-color: var(--background-color);
}

.work-stats-card .issues-list::-webkit-scrollbar {
    background-color: var(--scrollbar-background-color);
    width: var(--scrollbar-width);
}

.work-stats-card .issues-list::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb-background-color);
    border-radius: var(--scrollbar-radius);
}

.work-stats-card .issues-list::-webkit-scrollbar-track {
    background-color: var(--scrollbar-track-background-color);
}

.work-stat-item {
    padding: 10px;
    margin-bottom: 10px;
    background-color: var(--item-background-color);
    border-radius: 6px;
    cursor: pointer;
}

.work-stat-item {
    margin-bottom: 0px;

}

.work-stat-item .complex-name {
    display: flex;
    font-weight: bold;
    align-items: center-bottom;
    margin-bottom: 8px;
}

.work-stat-card {
    background-color: #ffffff;

}

.work-stat-item .complex-name i {
    margin-right: 8px;
}

.work-stat-card {
    margin-right: 20px;
}

.work-stat-item .stats {
    display: flex;
    justify-content: var(--space-between);
    margin-bottom: 20px;
}

.work-stat-item .stat-item {
    text-align: center;

}

.work-stat-item .stat-value {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 2px;
}

.work-stat-item .stat-item {
    background-color: #666;
}

.stat-item .stat-label {
    color: var(--stat-label-color);
    font-size: 9px;
}

.work-stat-item .stat-label {
    font-size: .9px;
    color: #666;
}

.stat-item.red . {
    color: var(--red-color);
}

.work-stat-item .red {
    color: #e73c;
}

.work-stat-item .stat-item.red .status {
    color: red;
}

.work-stat-item .status-bar {
    height: 4px;
    background-color: var(--status-bar-bg-color);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.work-stat-item .statusbar-fill {
    background-color: var(--green-color);
}

.work-stat-item .statusbar-fill.green {
    background: green;
}

.work-stat-item .statusbar-fill .red {
    background: red;
}

/* Списки с прокруткой */
.issues-card, .subordinates-card, .contractors-card {
    background: var(--card-bg);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    position: relative;
}

.issues-card .issues-wrapper {
    transition: max-height 0.3s ease;
}

.issues-card.collapsed .issues-wrapper,
.subordinates-card.collapsed .issues-wrapper,
.contractors-card.collapsed .issues-wrapper{
    max-height: 450px;
    overflow: hidden;
}

.issues-list {
    max-height: 140px;
    overflow-y: hidden;
    transition: max-height 0.3s;
}

.issues-card:not(.collapsed) .issues-list,
.subordinates-card:not(.collapsed) .issues-list,
.contractors-card:not(.collapsed) .issues-list{
    max-height: 400px;
    overflow-y: auto;
}

.issues-card:not(.collapsed) .issues-wrapper,
.subordinates-card:not(.collapsed) .issues-wrapper,
.contractors-card:not(.collapsed) .issues-wrapper {
    max-height: none;
}

/* Убедимся, что issue-card внутри списка имеет правильные отступы */
.issues-card .issue-card {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.complex-card.summary-header .stats {
    flex-direction: column;
    gap: 8px;
}

.complex-card.summary-header i {
    margin-right: 8px;
    font-size: 18px;
}

/* Стили для empty-state-issue-cards, чтобы иконка и текст отображались полностью */
.empty-card-list {
    text-align: center;
    padding: 10px;
}

.issues-card .empty-state {
    padding: 10px;
    text-align: center;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.issues-card .empty-state {
    min-height: 80px;
}

.empty-state-card .empty-state-icon {
    background-color: var(--icon-color);
}

.issues-card .empty-state .empty-icon {
    color: var(--icon-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.issues-card .empty-state .empty-text {
    font-size: 14px;
}

.issue-card .state {
    font-size: .14em;
}

.issue-card .state-details {
    max-height: 0px;
    overflow: hidden;
}

.issue-card .issue-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.issue-card .state-header {
    cursor: pointer;
}

.issue-card .issue-header {
    cursor: pointer;
}

.issue-card .issue-details.collapsed {
    max-height: 0;
    overflow: hidden;
}

.issue-card.expanded .issue-details {
    max-height: 300px;
    padding-top: 8px;
}

/* Animation for expanding/collapsing menu items */
.complex-card {
    animation: slideIn 0.3s ease-out;
}
.no-issues-card {
    margin-bottom: 10px;
    padding: 16px;
    box-shadow: var(--menu-shadow);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    min-height: 120px;
    transition: var(--menu-transition);
    animation: slideIn 0.3s ease-out;
}

.no-issues-card:hover {
    box-shadow: var(--menu-hover-shadow);
    transform: translateY(-2px);
}

.no-issues-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    opacity: 0;
    transform: scale(0.95);
    animation: popIn 0.4s ease-out forwards;
}

.no-issues-message {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    letter-spacing: 0.2px;
}

.no-issues-update {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}

/* Work Types Tiles */
.work-types-card {
    background: var(--card-bg, #ffffff);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    position: relative;
}

.work-types-card.collapsed .issues-wrapper {
    max-height: 350px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.work-types-card:not(.collapsed) .issues-wrapper {
    max-height: 450px;
    overflow-y: auto;
    transition: max-height 0.3s ease;
}

.work-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    padding: 12px 0;
}

.work-type-tile {
    background: var(--card-bg, #ffffff);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.work-type-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.work-type-name {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.work-type-tile .stats {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.work-type-tile .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1.2;
}

.work-type-tile .stat-value {
    font-size: 13px;
    font-weight: bold;
    color: #333;
}

.work-type-tile .stat-item.red .stat-value {
    color: #e74c3c;
}

.work-type-tile .stat-label {
    font-size: 10px;
    color: #777;
    text-transform: uppercase;
}

.work-type-tile .statusbar {
    height: 4px;
    background-color: #e0e0f0;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
}

.work-type-tile .statusbar-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.work-type-tile .statusbar-fill.green {
    background-color: #2ecc71;
}

.work-type-tile .statusbar-fill.red {
    background-color: #e74c3c;
}

/* Стили для фильтров видов работ */
.work-types-card .filter-item {
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px; /* Fixed gap between checkbox and label */
    transition: background 0.2s ease;
}

.work-types-card .filter-item:hover {
    background: #f8f9fa;
}

.work-types-card .filter-item input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px; /* Ensure checkbox doesn't shrink */
    min-height: 18px; /* Ensure checkbox doesn't shrink */
    border: 2px solid #6b7280;
    border-radius: 4px;
    background: #ffffff;
    cursor: pointer;
    margin: 0; /* Remove default margins */
    transition: background 0.2s ease, border-color 0.2s ease;
}

.work-types-card .filter-item input[type="checkbox"]:checked {
    background: #2563eb;
    border-color: #2563eb;
}

.work-types-card .filter-item input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ffffff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.work-types-card .filter-item label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    max-width: calc(100% - 26px); /* Account for checkbox (18px) + gap (8px) */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; /* Prevent label from wrapping */
}

.filters-container {
    display: table-row;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 0;
}

.filter-item {
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px; /* Fixed gap between checkbox and label */
    transition: background 0.2s ease;
}

.filter-item:hover {
    background: #f8f9fa;
}

.filter-item input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px; /* Ensure checkbox doesn't shrink */
    min-height: 18px; /* Ensure checkbox doesn't shrink */
    border: 2px solid #6b7280;
    border-radius: 4px;
    background: #ffffff;
    cursor: pointer;
    margin: 0; /* Remove default margins */
    transition: background 0.2s ease, border-color 0.2s ease;
}

.filter-item input[type="checkbox"]:checked {
    background: #2563eb;
    border-color: #2563eb;
}

.filter-item input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ffffff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.filter-item label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    max-width: calc(100% - 26px); /* Account for checkbox (18px) + gap (8px) */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; /* Prevent label from wrapping */
}

.approval-status {
    margin-top: 15px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
}

.approval-item {
    display: flex;
    align-items: center; /* Возвращаем center для выравнивания label и основного содержимого */
    margin-bottom: 8px;
}

.approval-label {
    font-weight: bold;
    min-width: 120px;
    margin-right: 10px;
}

.approval-value {
    display: flex;
    flex-wrap: wrap; /* Разрешаем перенос содержимого внутри approval-value */
    align-items: center; /* Выравниваем иконку и статус по центру */
    gap: 8px;
    flex: 1;
    overflow-wrap: break-word; /* Переносит длинные слова */
}

.approval-value i {
    flex-shrink: 0; /* Иконка не сжимается */
}

.approval-value span {
    flex-shrink: 0; /* Текст статуса не сжимается */
}

.approval-value::after { /* Псевдоэлемент для имени (claim.manager/analyst) */
    content: attr(data-name); /* Используем data-атрибут для имени */
    flex: 1; /* Имя занимает оставшееся пространство */
    overflow-wrap: break-word;
}

.approval-value.pending {
    color: #666;
}

.approval-value.approved {
    color: #28a745;
}

.approval-value.rejected {
    color: #dc3545;
}

.approve-btn.small {
    margin-left: auto;
    padding: 3px 8px;
    font-size: 12px;
}

.approval-buttons .approve-btn,
.approval-buttons .reject-btn {
    margin-top: 15px;
    flex: 1;
}

.hint-label {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}