/* Reset podstawowy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7bb300;
    --primary-dark: #5a8700;
    --primary-light: #97cc00;
    --secondary-color: #10b981;
    --text-dark: #2c3e50;
    /* Softer dark for text */
    --text-light: #7f8c8d;
    /* Softer gray */
    --bg-light: #f8fafc;
    /* Very subtle blue-gray tint */
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.04);
    /* Much softer shadow */
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.06);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    /* Increased line-height for readability */
    color: var(--text-dark);
    background-color: #fdfdfd;
    overflow-x: hidden;
    font-size: 17px;
    /* Slightly larger base font size */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Slightly narrower container for reading comfort */

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
}

.logo-tagline {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(123, 179, 0, 0.3);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: calc(100vh - 80px);
    /* Fill remaining screen exactly */
    min-height: 600px;
    /* Minimum height for safety */
    overflow: hidden;
    margin-top: 80px;
    /* Przestrzeń dla fixed header */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Match container height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3D & Visual Polish */
.tilt-card {
    transition: transform 0.1s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

.tilt-card:hover {
    box-shadow: 0 20px 40px rgba(123, 179, 0, 0.3), 0 0 0 1px var(--primary-color);
    border-color: var(--primary-color) !important;
}

.tilt-content {
    transform: translateZ(20px);
}

/* Floating Background Elements */
.floating-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: floatAnimation 20s infinite alternate;
    opacity: 0.6;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(100px, 50px) rotate(360deg);
    }
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 179, 0, 0.4) 0%, rgba(123, 179, 0, 0) 70%);
    top: -100px;
    left: -100px;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transition: opacity 1.2s ease-in-out, visibility 0s linear 0s;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(123, 179, 0, 0.3));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 40px;
    color: white;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out;
}

.slide-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(123, 179, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

/* Sections */
.why-us-section,
.products-section,
.process-section,
.cta-section-professional {
    padding: 100px 20px;
}

.products-section {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 20px 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Dodatkowe style dla kompletnego wyglądu */
.why-us-grid,
.products-grid-modern,
.process-timeline {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.products-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.process-timeline {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.why-us-card,
.product-card-modern,
.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-us-card:hover,
.product-card-modern:hover,
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(123, 179, 0, 0.3);
    border-color: var(--primary-color);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #e9f5dc, #f0f9ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.why-us-card h3,
.product-card-modern h3,
.process-step h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.why-us-card p,
.product-card-modern>p,
.process-step p {
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.product-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.product-badge-modern {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-badge-modern.new {
    background: var(--secondary-color);
}

.product-features-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.product-features-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    color: var(--text-dark);
    position: relative;
}

.product-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-link-modern {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.product-card-modern {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-modern:hover .product-link-modern {
    gap: 0.5rem;
}

.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-section-professional {
    background: linear-gradient(135deg, #f8fdf0 0%, #e9f5dc 100%);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-contact-box {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.phone-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.contact-hours {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.cta-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-secondary-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary-outline:hover {
    background: var(--primary-color);
    color: white;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.cta-benefits li svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Slider controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 2.5rem;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.85;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: white;
    transform: translateY(-50%) scale(1.15);
    opacity: 1;
    box-shadow: 0 8px 30px rgba(123, 179, 0, 0.5);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(1.05);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.slider-dot.active {
    background: var(--primary-color);
    border-color: white;
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(123, 179, 0, 0.6);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: white;
    transform: scale(1.2);
}

.slider-dot.active:hover {
    transform: scale(1.4);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--bg-light);
    }

    .hero-slider {
        margin-top: 70px;
        height: calc(100vh - 70px);
        min-height: auto;
    }

    .slide {
        height: 100%;
    }

    .slide-content {
        padding: 30px 20px;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .slide-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .why-us-section,
    .products-section,
    .process-section,
    .cta-section-professional {
        padding: 60px 20px;
    }

    .why-us-grid,
    .products-grid-modern,
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-us-card,
    .product-card-modern,
    .process-step {
        padding: 2rem 1.5rem;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-contact-box {
        padding: 2rem 1.5rem;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-dots {
        bottom: 30px;
        gap: 10px;
        padding: 8px 16px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Market Leader Features */

/* Sticky Contact Bar */
.sticky-contact-bar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-contact-bar.visible {
    transform: translateY(0);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8fdf0 0%, #e9f5dc 100%);
    padding: 80px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
    transition: transform 0.3s ease;
    cursor: default;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card:hover .stat-number {
    filter: drop-shadow(0 0 15px rgba(123, 179, 0, 0.5));
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    padding: 0 10px;
    display: inline-block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Calculator Section */
.calculator-section {
    padding: 100px 20px;
    background: white;
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.calculator-inputs {
    margin-bottom: 3rem;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.input-group input[type="number"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.input-group input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.input-group input[type="range"] {
    width: 100%;
    margin-top: 0.5rem;
}

#systemSizeValue {
    display: inline-block;
    margin-left: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.result-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: default;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(123, 179, 0, 0.2);
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .sticky-contact-bar .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .stat-number {
        font-size: 3rem;
    }

    .calculator-wrapper {
        padding: 2rem 1.5rem;
    }

    .result-value {
        font-size: 1.5rem;
    }
}

/* Green Page Header for About & Contact Pages */
.page-header.green-bg {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
}

.page-header.green-bg .section-title,
.page-header.green-bg .section-subtitle {
    color: white;
}

/* Subpages Grid Layouts (Desktop) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Mobile Adjustments for Subpages */
@media (max-width: 900px) {

    .about-grid,
    .contact-grid,
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-grid {
        display: flex;
        flex-direction: column-reverse;
        /* Form on top usually better, or keep standard order */
        flex-direction: column;
    }

    .map-section {
        height: 300px !important;
        margin-top: 2rem !important;
    }

    .page-header {
        padding: 100px 0 50px !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }
}

/* Ensure Mobile Menu is visible above other elements */
.nav-menu {
    z-index: 1001;
}