/* _content/KominfoJatim2025/Components/Layout/EmptyLayout.razor.rz.scp.css */
/* EmptyLayout Styles - Sesuai dengan referensi BackEndVendorDay */

.empty-page[b-752rugid1l] {
    min-height: 100vh;
    background: #f8f6f7;
    display: flex;
    flex-direction: column;
}

.empty-main[b-752rugid1l] {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

.empty-content[b-752rugid1l] {
    flex: 1;
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
}

/* Optional: untuk halaman yang membutuhkan centering */
.empty-content.centered[b-752rugid1l] {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .empty-content[b-752rugid1l] {
        padding: 1rem;
    }
}

/* Print styles */
@media print {
    .empty-page[b-752rugid1l] {
        background: white;
    }
    
    .empty-content[b-752rugid1l] {
        padding: 0;
    }
}
/* _content/KominfoJatim2025/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-0vsehqdq1l] {
    position: relative;
    display: flex;
    flex-direction: row;
    background: #f8f6f7;
    min-height: 100vh;
    margin: 0;
padding: 0;
}

/* Sidebar Styles - RED Gradient - ADJUSTED WIDTH */
.sidebar[b-0vsehqdq1l] {
    background-image: linear-gradient(180deg, #dc2626 0%, #991b1b 70%);
    width: 280px; /* Increased from 250px */
    min-width: 280px;
    height: 100vh;
    position: fixed;
  left: 0;
    top: 0;
    box-shadow: 2px 0 15px rgba(220, 38, 38, 0.25);
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 0 1rem 1rem 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), min-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.collapsed[b-0vsehqdq1l] {
  width: 70px; /* Reduced from 80px */
    min-width: 70px;
}

/* Main Content Area */
main[b-0vsehqdq1l] {
    flex: 1;
    background: #f8f6f7;
    margin-left: 280px; /* Increased from 250px */
    padding: 0;
    min-height: 100vh;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.main-content[b-0vsehqdq1l] {
    width: 100%;
    min-height: 100vh;
    background: #f8f6f7;
    margin-left: 280px; /* Increased from 250px */
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.main-content.sidebar-collapsed[b-0vsehqdq1l] {
    margin-left: 70px; /* Reduced from 80px */
}

.main-content.sidebar-expanded[b-0vsehqdq1l] {
    margin-left: 280px; /* Increased from 250px */
}

/* Top Row - RED Gradient */
.top-row[b-0vsehqdq1l] {
    background: linear-gradient(90deg, #ef4444, #dc2626);
    color: white;
    border-radius: 0 0 1rem 1rem;
    margin: 0 0 1.5rem 0;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    display: flex;
 align-items: center;
    justify-content: flex-end;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-row a[b-0vsehqdq1l] {
    color: white;
    text-decoration: none;
}

.top-row .btn-outline-light[b-0vsehqdq1l] {
    border-color: rgba(255,255,255,0.6);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-row .btn-outline-light:hover[b-0vsehqdq1l] {
    background-color: rgba(255,255,255,0.2);
    border-color: white;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Content Area */
.content[b-0vsehqdq1l] {
 background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    margin: 0 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    min-height: calc(100vh - 8rem);
    position: relative;
    z-index: 10;
}

/* Responsive design adjustments */
@media (max-width: 900px) {
    .sidebar[b-0vsehqdq1l] { 
        width: 60vw; 
        min-width: 120px; 
   z-index: 1050;
    }
    .sidebar.collapsed[b-0vsehqdq1l] { 
        width: 80px; 
        min-width: 80px; 
    }
    main[b-0vsehqdq1l] {
     margin-left: 60vw; 
    }
    .main-content[b-0vsehqdq1l] {
   margin-left: 60vw;
    }
    .main-content.sidebar-collapsed[b-0vsehqdq1l] { 
        margin-left: 80px; 
    }
    .main-content.sidebar-expanded[b-0vsehqdq1l] {
      margin-left: 60vw;
    }
}

@media (max-width: 768px) {
    .page[b-0vsehqdq1l] {
 flex-direction: column;
    }
    
    .sidebar[b-0vsehqdq1l] {
     width: 100vw !important;
        min-width: unset !important;
        position: fixed;
     left: 0; 
        top: 0;
        height: 100vh;
        z-index: 1050;
      transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 15px rgba(0,0,0,0.18);
        border-radius: 0;
    }
    
 .sidebar:not(.collapsed)[b-0vsehqdq1l] {
        transform: translateX(0); 
    }
    
    .sidebar.collapsed[b-0vsehqdq1l] {
 width: 80px !important;
   min-width: 80px !important;
        transform: translateX(0);
      border-radius: 0 1rem 1rem 0;
    }
    
    .sidebar[b-0vsehqdq1l]::before {
        content: '';
        position: fixed;
    top: 0; 
  left: 0;
     width: 100vw; 
        height: 100vh;
        background: rgba(0,0,0,0.45);
        z-index: -1;
        pointer-events: auto;
        display: block;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .sidebar:not(.collapsed)[b-0vsehqdq1l]::before {
        opacity: 1;
    }
    
    .sidebar.collapsed[b-0vsehqdq1l]::before { 
        display: none; 
  }
    
    main[b-0vsehqdq1l] {
        margin-left: 0; 
        width: 100%;
    }
    
    .main-content[b-0vsehqdq1l] { 
        margin-left: 0; 
        width: 100%;
    }
    
    .main-content.sidebar-collapsed[b-0vsehqdq1l] { 
     margin-left: 80px; 
    }
    
    .main-content.sidebar-expanded[b-0vsehqdq1l] {
        margin-left: 0;
    }
}

/* Fix untuk layout tumpang tindih */
@media (min-width: 769px) {
    .page[b-0vsehqdq1l] {
        padding-left: 0;
    }
    
    .sidebar[b-0vsehqdq1l] {
      position: fixed;
        left: 0;
      top: 0;
 z-index: 1000;
    }
 
    main[b-0vsehqdq1l], .main-content[b-0vsehqdq1l] {
        margin-left: 280px; /* Increased from 250px */
        width: calc(100% - 280px); /* Increased from 250px */
position: relative;
    z-index: 1;
    }
  
    .main-content.sidebar-collapsed[b-0vsehqdq1l] {
        margin-left: 70px; /* Reduced from 80px */
        width: calc(100% - 70px);
    }
}

/* Print styles for cleaner output */
@media print {
    .sidebar[b-0vsehqdq1l], .top-row[b-0vsehqdq1l], .btn[b-0vsehqdq1l] { 
        display: none !important; 
    }
    
    main[b-0vsehqdq1l], .main-content[b-0vsehqdq1l] { 
   margin: 0 !important; 
        padding: 0 !important; 
        width: 100% !important;
    }
    
    .content[b-0vsehqdq1l] {
   border: 1px solid #000 !important; 
     box-shadow: none !important; 
        break-inside: avoid; 
        margin: 0 !important;
border-radius: 0 !important;
    }
}

#blazor-error-ui[b-0vsehqdq1l] {
    background: lightyellow;
    bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
}

#blazor-error-ui .dismiss[b-0vsehqdq1l] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/KominfoJatim2025/Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu Styles - Enhanced RED Color Scheme - Optimized Layout */

/* Navigation Menu Container - RED Gradient Background - WIDER */
.nav-menu[b-sy7pxzeyvp] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.25);
    width: 280px; /* Increased from 250px */
}

.nav-menu.collapsed[b-sy7pxzeyvp] {
    width: 95px; /* Increased from 85px for more comfortable icon spacing */
}

/* Brand Section */
.nav-brand[b-sy7pxzeyvp] {
 padding: 1rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.brand-link[b-sy7pxzeyvp] {
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start for better multi-line support */
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    position: relative;
justify-content: flex-start;
}

.brand-link.collapsed[b-sy7pxzeyvp] {
    justify-content: center;
    align-items: center; /* Center when collapsed */
    padding: 0.5rem 0.25rem;
}

.brand-link:hover[b-sy7pxzeyvp] {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(4px);
}

.brand-link.collapsed:hover[b-sy7pxzeyvp] {
    transform: scale(1.05);
}

.logo[b-sy7pxzeyvp] {
    width: 45px; /* Reduced from 50px */
  height: 45px;
    border-radius: 50%;
    margin-right: 0.75rem; /* Reduced from 1rem */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: white;
    padding: 0.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-menu.collapsed .logo[b-sy7pxzeyvp] {
    margin-right: 0;
    width: 48px; /* Increased from 42px for better visibility */
    height: 48px; /* Increased from 42px for better visibility */
}

.brand-text[b-sy7pxzeyvp] {
    display: flex;
    flex-direction: column;
  opacity: 1;
    transition: opacity 0.3s ease;
  flex-grow: 1;
}

.nav-menu.collapsed .brand-text[b-sy7pxzeyvp] {
    display: none;
}

.brand-title[b-sy7pxzeyvp] {
    margin: 0;
    font-size: 1rem; /* Reduced from 1.1rem */
    font-weight: 700;
    color: white;
    white-space: normal; /* Changed from nowrap to allow wrapping */
    word-wrap: break-word;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-subtitle[b-sy7pxzeyvp] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem; /* Reduced from 0.8rem */
    margin-top: 0.25rem;
    white-space: normal; /* Changed from nowrap to allow wrapping */
    word-wrap: break-word;
    line-height: 1.4;
}

.collapse-indicator[b-sy7pxzeyvp] {
    margin-left: auto;
    padding-left: 0.5rem;
    opacity: 0.8;
  transition: all 0.3s ease;
    color: white;
}

.nav-menu.collapsed .collapse-indicator[b-sy7pxzeyvp] {
    display: none;
}

.brand-link:hover .collapse-indicator[b-sy7pxzeyvp] {
    opacity: 1;
    transform: scale(1.1);
}

/* Navigation Divider */
.nav-divider[b-sy7pxzeyvp] {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 0.5rem 0;
}

/* Scrollable Navigation Area */
.nav-scrollable[b-sy7pxzeyvp] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.75rem 0;
}

.nav-scrollable[b-sy7pxzeyvp]::-webkit-scrollbar {
    width: 4px;
}

.nav-scrollable[b-sy7pxzeyvp]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.nav-scrollable[b-sy7pxzeyvp]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.nav-scrollable[b-sy7pxzeyvp]::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Navigation Sections - UL styling */
.nav-section[b-sy7pxzeyvp] {
    list-style: none;
    margin: 0 0 1.25rem 0; /* Reduced from 1.5rem */
    padding: 0;
}

.nav-section.collapsed[b-sy7pxzeyvp] {
    margin-bottom: 0.5rem;
}

/* Section Headers - LI styling - SMALLER */
.nav-section-header[b-sy7pxzeyvp] {
    display: flex;
    align-items: center;
    font-size: 0.65rem; /* Reduced from 0.75rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px; /* Reduced from 1.2px */
    color: rgba(255, 255, 255, 0.85);
    padding: 0.4rem 0.75rem; /* Reduced padding */
  margin-bottom: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #fbbf24;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    list-style: none;
    border-radius: 4px;
}

.nav-section.collapsed .nav-section-header[b-sy7pxzeyvp] {
    padding: 0.6rem; /* Increased padding for more comfortable spacing */
    margin-bottom: 0.4rem;
    justify-content: center;
    border-left: none;
    border-bottom: 3px solid #fbbf24;
    background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
}

.nav-section-header span[b-sy7pxzeyvp] {
display: block;
}

.nav-menu.collapsed .nav-section-header span[b-sy7pxzeyvp] {
    display: none;
}

.nav-section-header i[b-sy7pxzeyvp] {
    font-size: 1rem; /* Increased from 0.85rem for better visibility when collapsed */
    color: #fbbf24;
  margin-right: 0.5rem;
}

.nav-menu.collapsed .nav-section-header i[b-sy7pxzeyvp] {
    display: block;
    margin-right: 0;
    font-size: 1.25rem; /* Increased from 1.1rem for better visibility */
}

/* Navigation Items - LI styling */
.nav-item[b-sy7pxzeyvp] {
    list-style: none;
    margin-bottom: 0.15rem; /* Reduced from 0.25rem */
    position: relative;
    padding: 0;
}

/* OPTIMIZED ICON AND TEXT SPACING */
.nav-link[b-sy7pxzeyvp], .nav-link *[b-sy7pxzeyvp], .nav-link span[b-sy7pxzeyvp], .nav-link .nav-text[b-sy7pxzeyvp] {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.75rem; /* Reduced padding */
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
font-weight: 500;
    font-size: 0.85rem; /* Reduced from 0.9rem */
    position: relative;
    margin: 0 0.25rem; /* Reduced from 0.5rem */
    border-radius: 6px; /* Reduced from 8px */
    cursor: pointer;
  white-space: nowrap;
    overflow: hidden;
    background: transparent !important;
    border: none !important;
    height: auto !important;
    line-height: normal !important;
    width: auto !important;
}

.nav-link.collapsed[b-sy7pxzeyvp] {
    padding: 0.75rem; /* Increased from 0.7rem for better spacing */
    justify-content: center;
    margin: 0 0.6rem; /* Increased margins */
}

.nav-link:hover[b-sy7pxzeyvp], .nav-link:hover *[b-sy7pxzeyvp], .nav-link:hover span[b-sy7pxzeyvp], .nav-link:hover .nav-text[b-sy7pxzeyvp] {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    transform: translateX(4px); /* Reduced from 6px */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-link.collapsed:hover[b-sy7pxzeyvp] {
    transform: scale(1.08);
}

.nav-link.active[b-sy7pxzeyvp], .nav-link.active *[b-sy7pxzeyvp], .nav-link.active span[b-sy7pxzeyvp], .nav-link.active .nav-text[b-sy7pxzeyvp] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    color: #7c2d12 !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.nav-link.active[b-sy7pxzeyvp]::before {
    content: '';
    position: absolute;
    left: -0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: #fbbf24;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

.nav-link.collapsed.active[b-sy7pxzeyvp]::before {
    left: 50%;
    top: -0.25rem;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
}

/* SMALLER ICONS WITH TIGHTER SPACING */
.nav-link i[b-sy7pxzeyvp] {
    font-size: 0.95rem; /* Reduced from 1.1rem */
    margin-right: 0.35rem; /* Reduced from 0.5rem - LEBIH DEKAT */
    width: 18px; /* Reduced from 20px */
    text-align: center;
    transition: all 0.3s ease;
  flex-shrink: 0;
    color: rgba(255, 255, 255, 0.95) !important;
    display: inline-block;
}

.nav-link.collapsed i[b-sy7pxzeyvp] {
    margin-right: 0;
    font-size: 1.3rem; /* Increased from 1.2rem for better visibility */
    display: inline-block;
}

.nav-text[b-sy7pxzeyvp] {
    transition: all 0.3s ease;
    flex: 1;
    overflow: hidden;
 text-overflow: ellipsis;
}

.nav-menu.collapsed .nav-text[b-sy7pxzeyvp] {
    display: none;
}

/* Tooltip for collapsed state */
.nav-menu.collapsed .nav-link[b-sy7pxzeyvp] {
    position: relative;
}

.nav-menu.collapsed .nav-link:hover[b-sy7pxzeyvp]::after {
    content: attr(title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #1f2937;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem; /* Reduced from 0.875rem */
 white-space: nowrap;
    z-index: 1000;
    margin-left: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: tooltipFadeIn-b-sy7pxzeyvp 0.2s ease forwards;
}

.nav-menu.collapsed .nav-link:hover[b-sy7pxzeyvp]::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
    border-right: 6px solid #1f2937;
    margin-left: 0.25rem;
    z-index: 1001;
}

@keyframes tooltipFadeIn-b-sy7pxzeyvp {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-5px);
    }
    to {
   opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .nav-menu.collapsed[b-sy7pxzeyvp] {
        width: 85%;
        max-width: 320px;
    }

 .nav-brand[b-sy7pxzeyvp] {
        padding: 0.75rem;
    }

    .brand-link.collapsed[b-sy7pxzeyvp] {
        justify-content: flex-start;
     padding: 0.5rem;
    }

    .logo[b-sy7pxzeyvp] {
        width: 36px;
        height: 36px;
    }

    .nav-menu.collapsed .logo[b-sy7pxzeyvp] {
        margin-right: 0.75rem;
        width: 36px;
        height: 36px;
    }

    .nav-menu.collapsed .brand-text[b-sy7pxzeyvp] {
        display: flex;
    }

  .nav-menu.collapsed .collapse-indicator[b-sy7pxzeyvp] {
        display: block;
    }

    .brand-title[b-sy7pxzeyvp] {
  font-size: 0.95rem;
    }

    .brand-subtitle[b-sy7pxzeyvp] {
        font-size: 0.7rem;
    }

    .nav-scrollable[b-sy7pxzeyvp] {
        padding: 0.5rem 0;
    }

    .nav-section-header[b-sy7pxzeyvp] {
        font-size: 0.65rem;
    padding: 0.35rem 0.75rem;
    }

    .nav-section.collapsed .nav-section-header[b-sy7pxzeyvp] {
    padding: 0.35rem 0.75rem;
        justify-content: flex-start;
        margin-left: 0;
    margin-right: 0;
    }

  .nav-link[b-sy7pxzeyvp] {
        padding: 0.55rem 0.75rem;
        font-size: 0.8rem;
    }

    .nav-link.collapsed[b-sy7pxzeyvp] {
padding: 0.55rem 0.75rem;
        justify-content: flex-start;
        margin: 0 0.25rem;
    }

    .nav-link i[b-sy7pxzeyvp] {
        margin-right: 0.5rem;
        font-size: 0.9rem;
    }

    .nav-link.collapsed i[b-sy7pxzeyvp] {
        margin-right: 0.5rem;
      font-size: 1rem;
    }

    .nav-menu.collapsed .nav-text[b-sy7pxzeyvp] {
     display: block;
    }

    .nav-link:hover[b-sy7pxzeyvp]::after {
        display: none;
    }
}

/* Focus states for accessibility */
.nav-link:focus[b-sy7pxzeyvp],
.brand-link:focus[b-sy7pxzeyvp] {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Additional enhancement - subtle animation on menu items */
@keyframes slideIn-b-sy7pxzeyvp {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-item[b-sy7pxzeyvp] {
    animation: slideIn-b-sy7pxzeyvp 0.3s ease forwards;
}

.nav-item:nth-child(1)[b-sy7pxzeyvp] { animation-delay: 0.05s; }
.nav-item:nth-child(2)[b-sy7pxzeyvp] { animation-delay: 0.1s; }
.nav-item:nth-child(3)[b-sy7pxzeyvp] { animation-delay: 0.15s; }
.nav-item:nth-child(4)[b-sy7pxzeyvp] { animation-delay: 0.2s; }
.nav-item:nth-child(5)[b-sy7pxzeyvp] { animation-delay: 0.25s; }
.nav-item:nth-child(6)[b-sy7pxzeyvp] { animation-delay: 0.3s; }
