/* style.css - Chandauli Plot Hub Theme */

:root {
    --primary: #1E7D32;
    /* Main Green Theme */
    --primary-light: #E8F5E9;
    /* Light Green Bg */
    --secondary: #E67E22;
    /* Orange for Commercial */
    --bg-color: #F8F9FA;
    --surface: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
    --nav-bg: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #E5E5E5;
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.app-container {
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 481px) {
    .app-container {
        height: 90vh;
        border-radius: 32px;
        border: 8px solid #111;
    }
}

/* Splash Screen */
.splash-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: white;
    transition: opacity 0.5s ease;
}

.splash-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pulse 2s infinite;
}

.splash-logo .material-icons-round {
    font-size: 80px;
    margin-bottom: 10px;
}

.splash-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.splash-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 4px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* App Bar - Green Theme */
.app-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--primary);
    color: white;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.app-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-title {
    font-size: 20px;
    font-weight: 700;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: var(--radius-full);
}

/* Premium Area Selector */
.premium-area-selector {
    background: #fff;
    margin: 16px 20px 24px;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.selector-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.selector-title-icon {
    color: #2e7d32;
    font-size: 20px;
}

.selector-title-label {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1F2937;
    cursor: pointer;
}

/* The trigger row (icon + text + chevron) */
.selector-dropdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 14px;
    cursor: pointer;
    user-select: none;
}

.selector-dropdown-wrapper.open {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* Left group: icon + area name */
.left-group {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    flex: 1;
}

.selector-dropdown-wrapper .inline-icon {
    color: #2e7d32;
    font-size: 20px;
    flex-shrink: 0;
}

.selected-area-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #166534;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Chevron icon on the right */
.selector-dropdown-wrapper .chevron-icon {
    color: #111827;
    font-size: 24px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.selector-dropdown-wrapper.open .chevron-icon {
    transform: rotate(180deg);
}

/* Options dropdown panel */
.area-options-list {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-top: 6px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.15s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.area-option {
    padding: 13px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
}

.area-option:last-child {
    border-bottom: none;
}

.area-option:hover,
.area-option:active {
    background: #f0fdf4;
    color: #2e7d32;
}

.area-option.selected {
    background: #E8F5E9;
    color: #166534;
    font-weight: 600;
}

/* Main Content Area */
.main-content {
    flex: 1;
    overflow-y: auto;
    position: relative;
    padding-bottom: 80px;
    /* Space for nav */
}

/* Views Management */
.view {
    display: none;
    padding: 10px 20px 20px;
    animation: fadeIn 0.3s ease;
}

.active-view {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Bar */
.header-search-container {
    padding: 0 16px;
    background: var(--bg-color);
    position: relative;
    z-index: 9;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.header-search-container.show {
    max-height: 100px;
    opacity: 1;
    padding: 10px 16px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.search-bar .material-icons-round {
    color: var(--text-secondary);
    margin-right: 12px;
}

.search-bar input {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    width: 100%;
    outline: none;
    color: var(--text-primary);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.cat-card {
    border-radius: var(--radius-md);
    padding: 12px 6px;
    text-align: center;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.2s;
}

.cat-card:active {
    transform: scale(0.96);
}

.cat-card.residential {
    background-color: var(--primary);
}

.cat-card.commercial {
    background-color: var(--secondary);
}

.cat-card.agricultural {
    background-color: #8BC34A;
}

.cat-icon {
    font-size: 28px;
}

.cat-text {
    font-size: 11px;
    line-height: 1.2;
}

/* Section Titles */
.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

/* Horizontal Scroll Feed (Featured) */
.featured-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.featured-scroll::-webkit-scrollbar {
    display: none;
}

.mini-card {
    width: 160px;
    flex-shrink: 0;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.mini-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.mini-content {
    padding: 8px;
}

.mini-price {
    font-size: 14px;
    font-weight: 700;
}

.mini-title {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Feed Container (List View) */
.feed-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
}

/* Detailed Property Card */
.property-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.property-card:active {
    transform: scale(0.98);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Featured badge - top-left of card image, shown only when featured=true */
.card-featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FFD700;
    color: #fff;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 5;
    text-shadow: 0px 2px 3px rgba(0,0,0,0.45);
}

/* Heart / Favorite button on card */
.card-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.15s ease, background 0.15s ease;
    z-index: 5;
}

.card-fav-btn:active {
    transform: scale(0.85);
}

.card-fav-btn .material-icons-round {
    font-size: 20px;
    color: #9ca3af; /* grey default */
    transition: color 0.2s ease, transform 0.2s ease;
}

.card-fav-btn.active .material-icons-round {
    color: #e53935; /* solid red when favorited */
}

@keyframes heartPop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.5); }
    70%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.card-fav-btn.pop .material-icons-round {
    animation: heartPop 0.3s ease forwards;
}

.card-content {
    padding: 16px;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    line-height: 1.35;
    letter-spacing: 0.2px;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-meta .meta-sep {
    color: #D1D5DB;
    font-weight: 300;
    padding: 0 2px;
}

.card-meta .material-icons-round {
    font-size: 16px;
    color: #9CA3AF;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.btn-small {
    background: transparent;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-small:hover,
.btn-small:active {
    background: var(--primary);
    color: white;
}

/* Sub-header for views */
.search-results-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-top: 8px;
    margin-bottom: 10px;
}

.sub-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: var(--primary);
    color: white;
    gap: 16px;
    box-shadow: var(--shadow-md);
}

.sub-header h2 {
    font-size: 18px;
    font-weight: 600;
    flex: 1;
}

/* Forms */
#view-add .sub-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.form-container {
    padding-top: 10px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1F2937;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    background: var(--surface);
    color: #111827;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #9CA3AF;
}

.image-upload-wrapper {
    display: flex;
    justify-content: flex-start;
}

.upload-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--primary-light);
    color: var(--primary);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
}

.upload-btn .material-icons-round {
    font-size: 32px;
    margin-bottom: 4px;
}

.image-preview-container {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.preview-box {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.remove-img-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

/* Buttons */
.primary-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

/* Detail Screen Fullscreen */
.fullscreen-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.fullscreen-view.active,
.fullscreen-view.open {
    transform: translateX(0);
}

.detail-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 100px;
}

.detail-carousel {
    width: 100%;
    height: 300px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    background: #e0e0e0;
}

.detail-carousel::-webkit-scrollbar {
    display: none;
}

.detail-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: center;
}

/* Image Carousel Overlays */
.carousel-wrapper {
    position: relative;
    width: 100%;
}

/* Floating favorite button on detail page image slider */
.detail-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    z-index: 10;
    transition: transform 0.15s ease;
}

.detail-fav-btn:active {
    transform: scale(0.88);
}

.detail-fav-btn .material-icons-round {
    font-size: 22px;
    color: #9ca3af;
    transition: color 0.2s ease;
}

.detail-fav-btn.active .material-icons-round {
    color: #e53935;
}

.detail-fav-btn.pop .material-icons-round {
    animation: heartPop 0.3s ease forwards;
}

.carousel-counter {
    position: absolute;
    bottom: 40px;
    right: 16px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.carousel-dots {
    position: absolute;
    bottom: 44px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s;
}

.carousel-dots .dot.active {
    background: white;
    width: 10px;
    height: 10px;
}

.detail-info {
    padding: 24px;
    background: var(--surface);
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    position: relative;
}

.detail-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.detail-meta {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 16px;
}

.detail-features {
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 14px;
    line-height: 1.8;
}

.detail-features .material-icons-round {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.detail-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.detail-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 24px;
}

.split-btns {
    display: flex;
    gap: 12px;
}

.btn-green {
    background: var(--primary);
    flex: 1;
    color: white;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none; /* for <a> tag usage */
}

.btn-blue {
    background: #128C7E;
    flex: 1;
    color: white;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none; /* for <a> tag usage */
}

/* Sticky Bottom Call Button */
.bottom-cta {
    position: absolute;
    bottom: 70px;
    /* above nav */
    left: 0;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    z-index: 9;
}

.bottom-cta .primary-btn {
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(10, 125, 44, 0.4);
}

/* Bottom Nav */
.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--nav-bg);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    z-index: 10;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.bottom-nav.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.nav-item {
    background: none;
    border: none;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    flex: 1;
    height: 100%;
}

.nav-item .material-icons-round {
    font-size: 26px;
    margin-bottom: 4px;
}

.nav-item.active {
    color: var(--primary);
}

.toast {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #333;
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Image Fullscreen Zoom Modal */
.image-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.show {
    display: flex;
    opacity: 1;
}

.image-modal img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 2010;
}

/* Loader & Empty State */
.loader-container,
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(30, 125, 50, 0.1);
    border-left-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.empty-state .material-icons-round {
    font-size: 64px;
    color: #DDD;
    margin-bottom: 15px;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 20px;
}

.btn-refresh {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-refresh:active {
    background: var(--primary);
    color: white;
}

.btn-refresh .material-icons-round {
    font-size: 18px;
}

/* Persistent Loading Bar */
.loading-bar-container {
    width: 100%;
    height: 4px;
    background-color: rgba(30, 125, 50, 0.1);
    position: relative;
    overflow: hidden;
    margin: 10px 0;
}

.loading-bar-fill {
    height: 100%;
    background-color: var(--primary);
    width: 30%;
    position: absolute;
    left: -30%;
    animation: loading-bar-animation 1.5s infinite linear;
}

@keyframes loading-bar-animation {
    0% {
        left: -30%;
    }

    100% {
        left: 100%;
    }
}

.hidden {
    display: none !important;
}