/* _content/BGV1/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-woc9ektgr5] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-woc9ektgr5] {
    flex: 1;
}

.sidebar[b-woc9ektgr5] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-woc9ektgr5] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-woc9ektgr5]  a, .top-row[b-woc9ektgr5]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-woc9ektgr5]  a:hover, .top-row[b-woc9ektgr5]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-woc9ektgr5]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-woc9ektgr5] {
        justify-content: space-between;
    }

        .top-row[b-woc9ektgr5]  a, .top-row[b-woc9ektgr5]  .btn-link {
            margin-left: 0;
        }
}

/*@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth ::deep a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
*/
#blazor-error-ui[b-woc9ektgr5] {
    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: 1000;
}

    #blazor-error-ui .dismiss[b-woc9ektgr5] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/BGV1/Components/Layout/NavMenu.razor.rz.scp.css */
/* General Navbar Styling */
.navbar[b-gs76x0pm8n] {
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .navbar.scrolled[b-gs76x0pm8n] {
        background-color: rgba(0, 0, 0, 0.8);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        position: sticky;
    }

.navbar-inner[b-gs76x0pm8n] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Styling */
.navbar-logo .logo[b-gs76x0pm8n] {
    max-height: 50px;
    filter: invert(100%);
    transition: filter 0.3s ease;
}

/* Desktop Menu */
.navbar-menu[b-gs76x0pm8n] {
    display: flex; /* Ensure it shows as flex on desktop */
    gap: 20px;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.navbar-link[b-gs76x0pm8n] {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

    .navbar-link:hover[b-gs76x0pm8n] {
        color: #4A90E2;
    }

/* Hide Desktop Menu on Mobile */
@media (max-width: 768px) {
    .navbar-menu[b-gs76x0pm8n] {
        display: none;
    }
}

/* Mobile Menu Toggle */
.menu-toggle[b-gs76x0pm8n] {
    display: none;
}

.menu-button[b-gs76x0pm8n] {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: center; /* Centers lines in the button */
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1100;
    background: none;
    border: none;
    padding: 0;
}

.menu-icon[b-gs76x0pm8n] {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: absolute;
}

    /* Top Line */
    .menu-icon:nth-child(1)[b-gs76x0pm8n] {
        transform-origin: center;
        top: 10px; /* Positioned near the top */
    }

.menu-toggle:checked ~ .menu-button .menu-icon:nth-child(1)[b-gs76x0pm8n] {
    transform: rotate(45deg); /* Rotate to form the top half of the X */
    top: 17px; /* Move to center */
}

/* Middle Line (Hidden when active) */
.menu-icon:nth-child(2)[b-gs76x0pm8n] {
    transform-origin: center;
    top: 17px; /* Center the middle line */
}

.menu-toggle:checked ~ .menu-button .menu-icon:nth-child(2)[b-gs76x0pm8n] {
    opacity: 0; /* Hide the middle line */
}

/* Bottom Line */
.menu-icon:nth-child(3)[b-gs76x0pm8n] {
    transform-origin: center;
    top: 24px; /* Positioned near the bottom */
}

.menu-toggle:checked ~ .menu-button .menu-icon:nth-child(3)[b-gs76x0pm8n] {
    transform: rotate(-45deg); /* Rotate to form the bottom half of the X */
    top: 17px; /* Move to center */
}

/* Show Menu Button on Mobile */
@media (max-width: 768px) {
    .menu-button[b-gs76x0pm8n] {
        display: flex;
    }
}

/* Sidebar */
.sidebar[b-gs76x0pm8n] {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden initially */
    width: 250px;
    height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
}
/*Hide Sidebar on Desktop*/
@media (min-width: 769px) {
    .sidebar[b-gs76x0pm8n] {
        display: none;
    }

    .menu-button[b-gs76x0pm8n] {
        display: none; /* Hide the menu button on larger screens */
    }

    .menu-toggle[b-gs76x0pm8n] {
        display: none; /* Hide the checkbox toggle */
    }
}

/* Show Sidebar When Toggle is Checked */
.menu-toggle:checked ~ .sidebar[b-gs76x0pm8n] {
    right: 0;
}

.overlay[b-gs76x0pm8n] {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Dim background */
    z-index: 900;
    cursor: pointer; /* Indicates that clicking closes the menu */
}

.menu-toggle:checked ~ .overlay[b-gs76x0pm8n] {
    display: block; /* Show overlay when menu is open */
}

/* Sidebar Links */
.sidebar-menu[b-gs76x0pm8n] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.sidebar-link[b-gs76x0pm8n] {
    color: #f0f0f0; /* Light grey color for default state */
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

    /* Hover State */
    .sidebar-link:hover[b-gs76x0pm8n] {
        color: #4A90E2; /* Blue color on hover */
        text-decoration: underline; /* Optional underline effect */
    }

    /* Active State */
    .sidebar-link:active[b-gs76x0pm8n] {
        color: #ff9900; /* Orange color when clicked */
    }

    /* Focus State */
    .sidebar-link:focus[b-gs76x0pm8n] {
        outline: none;
        color: #ffff00; /* Yellow color when focused */
    }
/* _content/BGV1/Components/Pages/About.razor.rz.scp.css */
.about-background[b-brb7k1cd2j] {
    background-color: #131313;
}

.about-container[b-brb7k1cd2j] {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px 60px 20px;
    position: relative;
    top: 80px;
}

.hero-split[b-brb7k1cd2j] {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    max-width: 100%;
}

.heading-19[b-brb7k1cd2j] {
    color: #fff;
    margin-bottom: 0;
    text-decoration: underline;
}

.hero-form[b-brb7k1cd2j] {
    margin-bottom: 12px;
}

.hero-form-container[b-brb7k1cd2j] {
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
}

.guarantee-section[b-brb7k1cd2j], .needs-section[b-brb7k1cd2j] {
    padding-bottom: 80px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}

.hero-subscribe-left[b-brb7k1cd2j], .journey-section[b-brb7k1cd2j], .guarantee-section[b-brb7k1cd2j], .needs-section[b-brb7k1cd2j] {
    padding: 60px 15px;
}

.btn[b-brb7k1cd2j] {
    display: block;
    position: relative;
    margin: 0;
    padding: 11.5px 18px;
    transition: all 0.2s ease;
    border: 3px solid #552da8;
    border-radius: 50px;
    background: #552da8;
    cursor: pointer;
}

    .btn[b-brb7k1cd2j]:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        border-radius: 50px;
        background: white;
        width: 45px;
        height: 45px;
        transition: all 0.8s ease;
    }

    .btn span[b-brb7k1cd2j] {
        position: relative;
        font-family: Montserrat;
        font-size: 18px;
        color: white;
        font-weight: 400;
        letter-spacing: 0.05em;
    }

    .btn svg[b-brb7k1cd2j] {
        position: relative;
        top: 0;
        margin-left: 10px;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: white;
        stroke-width: 2;
        transform: translateX(-5px);
        transition: all 0.5s ease;
    }

    .btn:hover[b-brb7k1cd2j]:before {
        width: 100%;
        background: #1c1c1c;
    }

    .btn:hover svg[b-brb7k1cd2j] {
        transform: translateX(0);
        transition: all 2s ease;
    }

    .btn:active[b-brb7k1cd2j] {
        transform: scale(0.95);
        transition: all 2s ease;
    }

.select-vehicle-about[b-brb7k1cd2j] {
    background-color: var(--color1616);
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 12px 25px;
    font-size: 12px;
    line-height: 20px;
    transition: all .2s;
}

    .select-vehicle-about:hover[b-brb7k1cd2j] {
        color: #fff;
        background-color: #32343a;
    }

    .select-vehicle-about:active[b-brb7k1cd2j] {
        background-color: #43464d;
    }


/* _content/BGV1/Components/Pages/BackToTop.razor.rz.scp.css */
/*Back to Top Button*/
.topbutton[b-ephvxftap2] {
    width: 140px;
    height: 56px;
    overflow: hidden;
    border: none;
    color: #fff;
    background: none;
    position: relative;
    padding-bottom: 2em;
    cursor: pointer;
}

    .topbutton > div[b-ephvxftap2],
    .topbutton > svg[b-ephvxftap2] {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
    }

    .topbutton[b-ephvxftap2]:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: 0;
        left: 0;
        width: 100%;
        transform: scaleX(0);
        transform-origin: bottom right;
        background: currentColor;
        transition: transform 0.25s ease-out;
    }

    .topbutton:hover[b-ephvxftap2]:before {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .topbutton .clone > *[b-ephvxftap2],
    .topbutton .text > *[b-ephvxftap2] {
        opacity: 1;
        font-size: 1.3rem;
        transition: 0.2s;
        margin-left: 4px;
    }

    .topbutton .clone > *[b-ephvxftap2] {
        transform: translateY(60px);
    }

    .topbutton:hover .clone > *[b-ephvxftap2] {
        opacity: 1;
        transform: translateY(0px);
        transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    }

    .topbutton:hover .text > *[b-ephvxftap2] {
        opacity: 1;
        transform: translateY(-60px);
        transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    }

    .topbutton:hover .clone > :nth-child(1)[b-ephvxftap2] {
        transition-delay: 0.15s;
    }

    .topbutton:hover .clone > :nth-child(2)[b-ephvxftap2] {
        transition-delay: 0.2s;
    }

    .topbutton:hover .clone > :nth-child(3)[b-ephvxftap2] {
        transition-delay: 0.25s;
    }

    .topbutton:hover .clone > :nth-child(4)[b-ephvxftap2] {
        transition-delay: 0.3s;
    }

    /* Icon style and hover */
    .topbutton svg[b-ephvxftap2] {
        width: 20px;
        right: 0;
        top: 50%;
        transform: translateY(-50%) rotate(-50deg);
        transition: 0.2s ease-out;
    }

    .topbutton:hover svg[b-ephvxftap2] {
        transform: translateY(-50%) rotate(-90deg);
    }
/* _content/BGV1/Components/Pages/Batteries.razor.rz.scp.css */
.batteries-background[b-3v2hy164qo] {
    background-image: radial-gradient(circle, #373737, #0e0e0e);
    background-color: #333;
    padding-bottom: 100px;
    min-height: 100vh;
}

.batteries-sect[b-3v2hy164qo] {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    color: white;
    font-weight: 500;
    font-size: 24px;
    position: relative;
    top: 80px;
    border-radius: 20px;
    outline: 10px solid #2a2a2a;
    width: 100%;
    height: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3),
    inset 0px -3px 5px rgba(255, 255, 255, 0.1),
    inset 0px 3px 5px rgba(0, 0, 0, 0.5);
    background: #121212;
    background: linear-gradient( 135deg, #121212 25%, #1a1a1a 25%, #1a1a1a 50%, #121212 50%, #121212 75%, #1a1a1a 75%, #1a1a1a );
    background-size: 40px 40px;
    animation: move-b-3v2hy164qo 4s linear infinite;
}

@keyframes move-b-3v2hy164qo {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}


.batteries-grid[b-3v2hy164qo] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.battery-item[b-3v2hy164qo] {
    display: flex;
    gap: 10px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    align-items: center;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}


    .battery-item:hover[b-3v2hy164qo] {
        background-color: #333; /* Replace with specific model color */
        color: white;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    }

.battery-image-container[b-3v2hy164qo] {
    flex: 0 0 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.battery-image-container img[b-3v2hy164qo] {
    transition: transform 0.3s ease;
}

.battery-item:hover .battery-image-container img[b-3v2hy164qo] {
    transform: scale(1.1);
}

.battery-title[b-3v2hy164qo] {
    background-color: black;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
    margin-bottom: 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

.battery-item img[b-3v2hy164qo] {
    max-width: 100px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.battery-item:hover img[b-3v2hy164qo] {
    transform: scale(1.1);
}

.battery-details[b-3v2hy164qo] {
    flex: 1;
    max-width: 500px;
    margin-left: auto;
}

.battery-desc[b-3v2hy164qo] {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 10px;
}

.select-button[b-3v2hy164qo] {
    background-color: #292929;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: static;
    margin: 10px auto 0;
    display: block;
    align-self: flex-start;

}

    .select-button:hover[b-3v2hy164qo] {
        background-color: var(--hover-color);
    }

@media (max-width: 1024px) {
    .batteries-sect[b-3v2hy164qo] {
        width: calc(100% - 20px);
    }
}

@media (max-width: 768px) {
    .batteries-sect[b-3v2hy164qo] {
        width: calc(100% - 40px);
    }
    .batteries-grid[b-3v2hy164qo] {
        flex-direction: column;
    }
}
/* _content/BGV1/Components/Pages/Battery.razor.rz.scp.css */
.battery-hero-section[b-98ccq1b76e] {
    background-color: #000000f0;
    border-radius: 25px; /* Rounded corners */
    padding: 10px 15px 50px;
    position: relative;
    top: 80px;
    box-shadow: 0 2px 5px 6px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}
    .battery-hero-section[b-98ccq1b76e]::after {
        content: "";
        display: block;
        height: 80px; /* Matches the 'top' value */
    }

.battery-hero-wrapper[b-98ccq1b76e] {
    display: flex;
    flex-direction: column; /* Default to two rows */
    align-items: center; /* Center content horizontally */
    min-height: 500px;
}

/* Desktop and larger: Side-by-side layout */
@media (min-width: 1024px) {
    .battery-hero-wrapper[b-98ccq1b76e] {
        flex-direction: row; /* Two columns */
        align-items: stretch; /* Stretch both sections vertically */
    }
}

.battery-hero-image-split[b-98ccq1b76e] {
    display: flex;
    flex: 2;
    justify-content: center;
    align-items: center;
    width: 100%; /* Full width on smaller screens */
    max-width: 700px; /* Restrict image container width */
}

    .battery-hero-image-split img[b-98ccq1b76e] {
        position: sticky;
        width: 100%; /* Responsive image */
        border-radius: 15px;
    }

.battery-hero-split[b-98ccq1b76e] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%; 
    flex: 1;
}

.heading-7[b-98ccq1b76e] {
    margin-left: 10px;
    margin-right: 10px;
    display: block;
}


.heading-6[b-98ccq1b76e], .italic-text[b-98ccq1b76e] {
    color: #fff;
    font-size: 20px;
}
/* _content/BGV1/Components/Pages/BuyNow.razor.rz.scp.css */
.quantity-buynow-container[b-4ouqbf6v0e] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.button[b-4ouqbf6v0e] {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 24px;
    background-color: rgb(0 107 179);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
}

.button:hover[b-4ouqbf6v0e] {
        transform: scale(1.05);
        border-color: #fff9;
}

.button:hover[b-4ouqbf6v0e]::before {
            animation: shine-b-4ouqbf6v0e 1.5s ease-out infinite;
}

.button[b-4ouqbf6v0e]::before {
        content: "";
        position: absolute;
        width: 100px;
        height: 100%;
        background-image: linear-gradient( 120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70% );
        top: 0;
        left: -100px;
        opacity: 0.6;
}

@keyframes shine-b-4ouqbf6v0e {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}


.product-purchase-section[b-4ouqbf6v0e] {
    margin: 20px;
}

.price-display[b-4ouqbf6v0e] {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.quantity-form[b-4ouqbf6v0e] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-form-wrap[b-4ouqbf6v0e] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.quantity-label[b-4ouqbf6v0e] {
    font-size: 14px;
    font-weight: 500;
    margin-right: 5px;
    color: #e0e0e0;
}

.quantity-input-wrapper[b-4ouqbf6v0e] {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.quantity-input[b-4ouqbf6v0e] {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    background-color: #f9f9f9;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.quantity-btn[b-4ouqbf6v0e] {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

    .quantity-btn:hover[b-4ouqbf6v0e] {
        background-color: #555;
    }

.decrement-btn[b-4ouqbf6v0e] {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.increment-btn[b-4ouqbf6v0e] {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.btn-quantity[b-4ouqbf6v0e] {
    background-color: #555;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.buy-now-btn-container[b-4ouqbf6v0e] {
    margin-top: 10px;
}

.btn-buy-now[b-4ouqbf6v0e], .btn-confirm-purchase[b-4ouqbf6v0e] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.select-shipping-label[b-4ouqbf6v0e] {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s ease;
}

    .select-shipping-label:hover[b-4ouqbf6v0e] {
        color: #ffcb05;
    }

.shipping-options[b-4ouqbf6v0e] {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 20px;
}

.shipping-option[b-4ouqbf6v0e] {
    flex: 1;
    padding: 15px;
    border: 2px solid rgba(192, 192, 192, 0.6);
    border-radius: 20px;
    background-color: #292929;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.shipping-text[b-4ouqbf6v0e] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
}

.shipping-check[b-4ouqbf6v0e] {
    font-size: 18px;
    font-weight: bold;
    color: #ffcb05;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover Effect */
.shipping-option:hover[b-4ouqbf6v0e] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.5);
}

.shipping-option.selected[b-4ouqbf6v0e] {
    border-color: #ffcb05;
    background-color: #3b3b3b;
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.1);
}

    .shipping-option.selected .shipping-check[b-4ouqbf6v0e] {
        opacity: 1; /* Show checkmark */
    }

/* Delivery Truck Icon */
.shipping-text i[b-4ouqbf6v0e] {
    font-size: 20px;
    color: #ffcb05;
}

.subtotal-text[b-4ouqbf6v0e], .total-price[b-4ouqbf6v0e] {
    margin-top: 10px;
}

.payment-options[b-4ouqbf6v0e] {
    margin-top: 20px;
}

.payment-subutotal[b-4ouqbf6v0e] {
    color: white;
    text-align: left;
    border-bottom: 1px dashed #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.payment-price[b-4ouqbf6v0e] {
    color: white;
    text-align: left;
    border-bottom: 0 solid #000;
    margin-top: 0;
    margin-bottom: 10px;
}


.input-field[b-4ouqbf6v0e] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.flex-row[b-4ouqbf6v0e] {
    display: flex;
    gap: 10px;
}

.input-half[b-4ouqbf6v0e] {
    flex: 1;
}

.phone-input-wrapper[b-4ouqbf6v0e] {
    position: relative;
}

.flag-icon[b-4ouqbf6v0e] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.terms-text[b-4ouqbf6v0e] {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.bg-fade-in[b-4ouqbf6v0e] {
    animation: opac-b-4ouqbf6v0e 0.8s
}

.pay-another-way[b-4ouqbf6v0e] {
    text-align: center;
    font-weight: bold;
    margin: 20px 0;
    padding: 10px 0px 10px 0px; 
    color: white;
    transition: text-shadow 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    cursor: pointer;
}
    .pay-another-way:hover[b-4ouqbf6v0e] {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        color: #ffcb05; 
    }

.divider-text[b-4ouqbf6v0e] {
    font-weight: bold;
    font-size: 16px;
    position: relative;
    transition: transform 0.2s ease;
}

    .divider-text:hover[b-4ouqbf6v0e] {
        transform: scale(1.05);
    }

.email-input[b-4ouqbf6v0e], .input-field[b-4ouqbf6v0e], .select-field[b-4ouqbf6v0e] {
    width: 100%;
    height: 45px;
    padding: 12px;
    border-radius: 20px;
    border: 1.5px solid lightgrey;
    outline: none;
    transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0px 0px 20px -18px;
}
    .email-input:focus[b-4ouqbf6v0e], .input-field:focus[b-4ouqbf6v0e], .select-field:hover[b-4ouqbf6v0e] {
        border: 2px solid lightgrey;
        box-shadow: 0px 0px 20px -17px;
    }
    .email-input:focus[b-4ouqbf6v0e], .input-field:focus[b-4ouqbf6v0e], .select-field:active[b-4ouqbf6v0e] {
        transform: scale(0.99);
    }
    .email-input:focus[b-4ouqbf6v0e], .input-field:focus[b-4ouqbf6v0e], .select-field:focus[b-4ouqbf6v0e] {
        border: 2px solid grey;
    }

.email-form-container[b-4ouqbf6v0e] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
}

.payment-form[b-4ouqbf6v0e] {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background-color: #222;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .payment-form:hover[b-4ouqbf6v0e] {
        background-color: #333; /* Slightly lighter background for hover */
    }

.shipping-form[b-4ouqbf6v0e] {
    background-color: #333;
    border: 1px solid #e0e0e0;
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
}

.phone-input[b-4ouqbf6v0e]::before {
    position: absolute;
    left: 12px;
    top: 37px;
    color: #555;
    font-size: 16px;
}

@keyframes opac-b-4ouqbf6v0e {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.payment-div[b-4ouqbf6v0e] {
    flex-flow: column;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
}


.confirm-purchase-center[b-4ouqbf6v0e] {
    display: flex;
    justify-content: center;
    margin: 15px 0px 5px 0px;
}

.button-conf[b-4ouqbf6v0e] {
    padding: 12.5px 30px;
    border: 0;
    border-radius: 100px;
    background-color: #2ba8fb;
    color: #ffffff;
    font-weight: Bold;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

    .button-conf:hover[b-4ouqbf6v0e] {
        background-color: #6fc5ff;
        box-shadow: 0 0 20px #6fc5ff50;
        transform: scale(1.1);
    }

    .button-conf:active[b-4ouqbf6v0e] {
        background-color: #3d94cf;
        transition: all 0.25s;
        -webkit-transition: all 0.25s;
        box-shadow: none;
        transform: scale(0.98);
    }

    /*Slider*/

.switch-cont[b-4ouqbf6v0e] {
    display: flex;
    align-items: center; 
    gap: 10px;
    margin: 10px 0; 
}

.switch-text[b-4ouqbf6v0e] {
    font-size: 12px;
    color: var(--text-color, #fff);
    line-height: 1.5; /* Adjust text line height for readability */
}


.switch[b-4ouqbf6v0e] {
    /* switch */
    --switch-width: 46px;
    --switch-height: 24px;
    --switch-bg: rgb(131, 131, 131);
    --switch-checked-bg: rgb(0, 218, 80);
    --switch-offset: calc((var(--switch-height) - var(--circle-diameter)) / 2);
    --switch-transition: all .2s cubic-bezier(0.27, 0.2, 0.25, 1.51);
    /* circle */
    --circle-diameter: 18px;
    --circle-bg: #fff;
    --circle-shadow: 1px 1px 2px rgba(146, 146, 146, 0.45);
    --circle-checked-shadow: -1px 1px 2px rgba(163, 163, 163, 0.45);
    --circle-transition: var(--switch-transition);
    /* icon */
    --icon-transition: all .2s cubic-bezier(0.27, 0.2, 0.25, 1.51);
    --icon-cross-color: var(--switch-bg);
    --icon-cross-size: 6px;
    --icon-checkmark-color: var(--switch-checked-bg);
    --icon-checkmark-size: 10px;
    /* effect line */
    --effect-width: calc(var(--circle-diameter) / 2);
    --effect-height: calc(var(--effect-width) / 2 - 1px);
    --effect-bg: var(--circle-bg);
    --effect-border-radius: 1px;
    --effect-transition: all .2s ease-in-out;
}

    .switch input[b-4ouqbf6v0e] {
        display: none;
    }

.switch[b-4ouqbf6v0e] {
    display: inline-block;
}

    .switch svg[b-4ouqbf6v0e] {
        -webkit-transition: var(--icon-transition);
        -o-transition: var(--icon-transition);
        transition: var(--icon-transition);
        position: absolute;
        height: auto;
    }

    .switch .checkmark[b-4ouqbf6v0e] {
        width: var(--icon-checkmark-size);
        color: var(--icon-checkmark-color);
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .switch .cross[b-4ouqbf6v0e] {
        width: var(--icon-cross-size);
        color: var(--icon-cross-color);
    }

.slider[b-4ouqbf6v0e] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: var(--switch-width);
    height: var(--switch-height);
    background: var(--switch-bg);
    border-radius: 999px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-transition: var(--switch-transition);
    -o-transition: var(--switch-transition);
    transition: var(--switch-transition);
    cursor: pointer;
    margin: 10px 0px 10px 0px;
}

.circle[b-4ouqbf6v0e] {
    width: var(--circle-diameter);
    height: var(--circle-diameter);
    background: var(--circle-bg);
    border-radius: inherit;
    -webkit-box-shadow: var(--circle-shadow);
    box-shadow: var(--circle-shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: var(--circle-transition);
    -o-transition: var(--circle-transition);
    transition: var(--circle-transition);
    z-index: 1;
    position: absolute;
    left: var(--switch-offset);
}

.slider[b-4ouqbf6v0e]::before {
    content: "";
    position: absolute;
    width: var(--effect-width);
    height: var(--effect-height);
    left: calc(var(--switch-offset) + (var(--effect-width) / 2));
    background: var(--effect-bg);
    border-radius: var(--effect-border-radius);
    -webkit-transition: var(--effect-transition);
    -o-transition: var(--effect-transition);
    transition: var(--effect-transition);
}

/* actions */

.switch input:checked + .slider[b-4ouqbf6v0e] {
    background: var(--switch-checked-bg);
}

    .switch input:checked + .slider .checkmark[b-4ouqbf6v0e] {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .switch input:checked + .slider .cross[b-4ouqbf6v0e] {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .switch input:checked + .slider[b-4ouqbf6v0e]::before {
        left: calc(100% - var(--effect-width) - (var(--effect-width) / 2) - var(--switch-offset));
    }

    .switch input:checked + .slider .circle[b-4ouqbf6v0e] {
        left: calc(100% - var(--circle-diameter) - var(--switch-offset));
        -webkit-box-shadow: var(--circle-checked-shadow);
        box-shadow: var(--circle-checked-shadow);
    }
/* _content/BGV1/Components/Pages/ContactUs.razor.rz.scp.css */
.contact-container[b-5mvnmm5rlf] {
    display: flex;
    top: 80px;
    justify-content: center;
}


/* _content/BGV1/Components/Pages/ContactUsForm.razor.rz.scp.css */
.form[b-ni32zdffnh] {
    display: block;
    justify-self: center;
    background: #333;
    top: 40px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
    margin: 80px;
}

    .form:hover[b-ni32zdffnh] {
        background-color: #444; 
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        transform: translateY(-3px);
    }

    .contact-heading[b-ni32zdffnh] {
        color: white;
        text-align: center;
        padding: 10px;
        margin-bottom: 10px;
        max-width: 700px;
    }

.flex[b-ni32zdffnh] {
    display: flex;
    gap: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .form[b-ni32zdffnh] {
        width: calc(100% - 10px);
    }

    .flex[b-ni32zdffnh] {
        flex-direction: column;
    }
}

.flex label[b-ni32zdffnh] {
    flex: 1; 
    width: 100%;
    position: relative;
}

.form label[b-ni32zdffnh] {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
}

.input[b-ni32zdffnh], .input01[b-ni32zdffnh] {
    width: 100%;
    outline: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 18px;
}

.input01[b-ni32zdffnh] {
    resize: vertical;
    min-height: 100px;
    max-height: 500px;
}

.form label span[b-ni32zdffnh] {
    left: 14px;
    top: 14px;
    padding: 0 5px;
    color: white;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.form label .input:focus + span[b-ni32zdffnh],
.form label .input:not(:placeholder-shown) + span[b-ni32zdffnh],
.form label .input01:focus + span[b-ni32zdffnh],
.form label .input01:not(:placeholder-shown) + span[b-ni32zdffnh] {
    left: 10px;
    font-size: 12px;
    color: #62be28; /* Green when valid */
}

.form label .input:focus[b-ni32zdffnh],
.form label .input01:focus[b-ni32zdffnh] {
    border-color: #62be28; /* Green border on focus */
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5); /* Subtle green glow */
}

.fancy[b-ni32zdffnh] {
    display: block;
    margin: 0 auto;
    background-color: #62be28; /* Green background */
    border-radius: 20px; /* Rounded corners */
    color: #ffffff; /* White text */
    cursor: pointer; /* Pointer cursor on hover */
    padding: 12px 30px; /* Padding for size */
    font-size: 16px; /* Readable font size */
    font-weight: bold; /* Bold text */
    align-self: center; /* Centers the button horizontally */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
    position: relative;
    overflow: hidden;
    margin-top: 10px; /* Spacing above the button */
}

    .fancy:hover[b-ni32zdffnh] {
        background-color: #1e456d; /* Darker blue on hover */
        transform: scale(1.05); /* Slightly enlarge */
    }

    .fancy:active[b-ni32zdffnh] {
        transform: scale(0.95);
    }

.icon-container[b-ni32zdffnh] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    color: white;
    user-select: none;
}

    .icon-container svg[b-ni32zdffnh] {
        width: 50px;
        height: 50px;
    }

    .icon-container:hover .envelope[b-ni32zdffnh] {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .icon-container:hover .paper-plane[b-ni32zdffnh] {
        opacity: 1;
        animation: launch-b-ni32zdffnh 1s ease-in-out forwards;
    }

.paper-plane[b-ni32zdffnh] {
    opacity: 0;
}

@keyframes launch-b-ni32zdffnh {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) rotate(-10deg);
    }

    100% {
        transform: translateY(-50px) rotate(20deg);
        opacity: 0;
    }
}


.alert[b-ni32zdffnh] {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4[b-ni32zdffnh] {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link[b-ni32zdffnh] {
  font-weight: bold;
}

.alert > p[b-ni32zdffnh],
.alert > ul[b-ni32zdffnh] {
  margin-bottom: 0;
}

.alert > p + p[b-ni32zdffnh] {
  margin-top: 5px;
}

.alert-dismissable[b-ni32zdffnh],
.alert-dismissible[b-ni32zdffnh] {
  padding-right: 35px;
}

.alert-dismissable .close[b-ni32zdffnh],
.alert-dismissible .close[b-ni32zdffnh] {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success[b-ni32zdffnh] {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr[b-ni32zdffnh] {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link[b-ni32zdffnh] {
  color: #2b542c;
}

.alert-info[b-ni32zdffnh] {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr[b-ni32zdffnh] {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link[b-ni32zdffnh] {
  color: #245269;
}

.alert-warning[b-ni32zdffnh] {
  background-color: #fcf8e3 !important;
  border-color: #faebcc !important;
  color: #8a6d3b !important;
}

.validation-message[b-ni32zdffnh] {
    color: #8a6d3b !important;
}

.alert-warning hr[b-ni32zdffnh] {
  border-top-color: #f7e1b5 !important;
}

.alert-warning .alert-link[b-ni32zdffnh] {
  color: #66512c !important;
}

.alert-danger[b-ni32zdffnh] {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr[b-ni32zdffnh] {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link[b-ni32zdffnh] {
  color: #843534;
}

.loader[b-ni32zdffnh] {
    position: relative;
    border-style: solid;
    box-sizing: border-box;
    border-width: 40px 60px 30px 60px;
    border-color: #3760C9 #96DDFC #96DDFC #36BBF7;
    animation: envFloating-b-ni32zdffnh 1s ease-in infinite alternate;
}

    .loader[b-ni32zdffnh]:after {
        content: "";
        position: absolute;
        right: 62px;
        top: -40px;
        height: 70px;
        width: 50px;
        background-image: linear-gradient(#fff 45px, transparent 0), linear-gradient(#fff 45px, transparent 0), linear-gradient(#fff 45px, transparent 0);
        background-repeat: no-repeat;
        background-size: 30px 4px;
        background-position: 0px 11px, 8px 35px, 0px 60px;
        animation: envDropping-b-ni32zdffnh 0.75s linear infinite;
    }

@keyframes envFloating-b-ni32zdffnh {
    0% {
        transform: translate(-2px, -5px)
    }

    100% {
        transform: translate(0, 5px)
    }
}

@keyframes envDropping-b-ni32zdffnh {
    0% {
        background-position: 100px 11px, 115px 35px, 105px 60px;
        opacity: 1;
    }

    50% {
        background-position: 0px 11px, 20px 35px, 5px 60px;
    }

    60% {
        background-position: -30px 11px, 0px 35px, -10px 60px;
    }

    75%, 100% {
        background-position: -30px 11px, -30px 35px, -30px 60px;
        opacity: 0;
    }
}
      
/* _content/BGV1/Components/Pages/Essentials.razor.rz.scp.css */
/* Base Styling for the Section */
.car-key-essentials[b-47knr4brdr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(circle at 0%, #09c0de, #4a3f98);
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin: 0px 10px 0px 10px;
}

.bgwraps[b-47knr4brdr] {
    padding-top: 20px;
    align-items: flex-start;
    width: 100%;
}

    .bgwraps img[b-47knr4brdr] {
        height: 100%;
    }

/* Essentials Content Layout */
.essentials-div[b-47knr4brdr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px; /* Centered and responsive for large screens */
}

/* Reverse Layout for Mobile */
@media screen and (max-width: 768px) {
    .essentials-div[b-47knr4brdr] {
        flex-direction: column;
    }
}

/* Text Content */
.feature-content[b-47knr4brdr] {
    flex: 1; /* Allows text to take up equal space */
    text-align: left;
    margin: 20px;
}

    .feature-content .title[b-47knr4brdr] {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .feature-content h2[b-47knr4brdr] {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        color: black;
        line-height: 1.3;
    }

    .feature-content p[b-47knr4brdr] {
        font-size: 16px;
        line-height: 1.6;
        color: white;
    }

/* Essentials Image Container */
.essentials-image[b-47knr4brdr] {
    flex: 1;
    max-width: 500px;
    text-align: center;
    padding: 20px;
}

    .essentials-image img[b-47knr4brdr] {
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
/* _content/BGV1/Components/Pages/Family.razor.rz.scp.css */
.family-section[b-vh0iar8unv] {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 940px;
    background-color: #1c1c1c;
    border-radius: 20px 20px;
    text-align: center;
}

/* Content wrapper */
.family-content[b-vh0iar8unv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 10px 10px 10px;
}

/* Text Container */
.text-container[b-vh0iar8unv] {
    max-width: 940px;
    margin: 0 auto;
}

    .text-container h2[b-vh0iar8unv] {
        font-size: 2rem;
        margin: 0;
    }

/* Description */
.description[b-vh0iar8unv] {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.5;
}

/* Family Image */
.family-image[b-vh0iar8unv] {
    width: 100%;
    max-width: 900px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .text-container[b-vh0iar8unv] {
        max-width: 728px;
    }
}

@media screen and (max-width: 767px) {
    .text-container[b-vh0iar8unv] {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .family-section[b-vh0iar8unv] {
        width: calc(100% - 20px);
    }
}
/* _content/BGV1/Components/Pages/FAQ.razor.rz.scp.css */
.faq-section[b-cbocjm6l9m] {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-header h2[b-cbocjm6l9m] {
    text-align: center;
    font-size: 24px;
    color: black;
    margin-bottom: 10px;
}

.faq-header p[b-cbocjm6l9m] {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* FAQ Item Styles */
.faq-item[b-cbocjm6l9m] {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.faq-question[b-cbocjm6l9m] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
}

    .faq-question:hover[b-cbocjm6l9m] {
        color: #4A90E2;
    }

.faq-icon[b-cbocjm6l9m] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-answer[b-cbocjm6l9m] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    font-size: 16px;
    color: #555;
    padding-left: 30px;
}

.faq-item.open .faq-answer[b-cbocjm6l9m] {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
}

.faq-item.open .faq-icon[b-cbocjm6l9m] {
    transform: rotate(90deg); /* Rotate the icon */
}
/* _content/BGV1/Components/Pages/FAQPage.razor.rz.scp.css */
.background[b-pgvs3u20fz] {
    min-height: 130vh;
}

.faq-section[b-pgvs3u20fz] {
    position: relative;
    top: 80px;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-header h2[b-pgvs3u20fz] {
    text-align: center;
    font-size: 24px;
    color: black;
    margin-bottom: 10px;
}

.faq-header p[b-pgvs3u20fz] {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* FAQ Item Styles */
.faq-item[b-pgvs3u20fz] {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.faq-question[b-pgvs3u20fz] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
}

    .faq-question:hover[b-pgvs3u20fz] {
        color: #4A90E2;
    }

.faq-icon[b-pgvs3u20fz] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-answer[b-pgvs3u20fz] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    font-size: 16px;
    color: #555;
    padding-left: 30px;
}

.faq-item.open .faq-answer[b-pgvs3u20fz] {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
}

.faq-item.open .faq-icon[b-pgvs3u20fz] {
    transform: rotate(90deg); /* Rotate the icon */
}
/* _content/BGV1/Components/Pages/Footer.razor.rz.scp.css */
.battery-footer[b-iy0npynwbw] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: env(safe-area-inset-bottom);
    background-image: radial-gradient(circle, #373737, #0e0e0e);
    background-color: #2b2b2b;
}

.footer-div[b-iy0npynwbw] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(43, 43, 43, 0.75); /* Semi-transparent background */
    backdrop-filter: blur(5px);
    border-radius: 25px 25px 0 0; /* Rounded top corners */
    padding: 20px; /* Inner padding */
    width: 100%;
    max-width: 1200px; /* Center-align and limit width */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

.footer-image[b-iy0npynwbw]{
    padding-bottom: 20px
}

.footer-list[b-iy0npynwbw] {
    display: flex; /* Align links in a row */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    justify-content: center; /* Center-align the items */
    gap: 15px; /* Add spacing between links */
    margin: 10px 0; /* Space around the list */
}

.footer-link[b-iy0npynwbw] {
    color: #7a7a7a; /* Muted text color */
    text-decoration: none; /* Remove underline */
    font-size: 14px; /* Adjust font size */
    transition: color 0.3s; /* Smooth hover effect */
}

    .footer-link:hover[b-iy0npynwbw] {
        color: #fff; /* Highlight on hover */
    }

.text-block-9[b-iy0npynwbw] {
    color: #7a7a7a; /* Muted text color */
    font-size: 12px; /* Small text */
}


.fa-beat[b-iy0npynwbw] {
    -webkit-animation-name: fa-beat;
    animation-name: fa-beat;
    -webkit-animation-delay: var(--fa-animation-delay, 0);
    animation-delay: var(--fa-animation-delay, 0);
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
    animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
/* _content/BGV1/Components/Pages/GPayButton.razor.rz.scp.css */

/* _content/BGV1/Components/Pages/Home.razor.rz.scp.css */
.background[b-t5bxbyr4ga] {
    background-image: radial-gradient(circle, #373737, #0e0e0e);
    border-radius: 0;
}
/* _content/BGV1/Components/Pages/MakeModelYear.razor.rz.scp.css */
.replacement-section[b-ny29voj6pd] {

    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    padding: 20px;
    margin: 0 auto;
    height: auto;
    box-sizing: border-box;
    animation: fadeIn-b-ny29voj6pd 1.2s ease-in-out;
}
@keyframes fadeIn-b-ny29voj6pd {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .replacement-section[b-ny29voj6pd] {
        width: calc(100% - 20px);
    }

    .dropdown-input[b-ny29voj6pd] {
        max-width: 100%;
    }
}

.replacement-text[b-ny29voj6pd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Instructions */
.instructions[b-ny29voj6pd] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Find Battery Button */
.find-battery-btn[b-ny29voj6pd] {
    min-height: 40px;
    width: 100%;
    max-width: 200px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(74, 63, 152, 0.3);
}

    .find-battery-btn:hover[b-ny29voj6pd] {
        background-color: #5e5dcd;
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(74, 63, 152, 0.5);
    }

    .find-battery-btn:active[b-ny29voj6pd] {
        transform: scale(0.95);
        box-shadow: 0 3px 8px rgba(74, 63, 152, 0.3);
    }


.dropdown-form[b-ny29voj6pd] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.dropdown-label[b-ny29voj6pd] {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}



.dropdown-input[b-ny29voj6pd] {
    min-height: 50px;
    width: 100%;
    max-width: 400px;
    padding: 0 1.5rem;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid rgba(180, 180, 180, 0.7);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(74, 63, 152, 0.5), rgba(255, 255, 255, 0.1));
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0.9;
}

    .dropdown-input:focus[b-ny29voj6pd],
    .dropdown-input:focus-visible[b-ny29voj6pd] {
        border-color: #3898EC;
        box-shadow: 0 0 8px rgba(56, 152, 236, 0.9);
        outline: none;
        transform: scale(1.01);
        opacity: 1;
    }

    .dropdown-input:hover[b-ny29voj6pd] {
        border-color: #ffffff;
        background: linear-gradient(135deg, rgba(100, 100, 255, 0.6), rgba(200, 200, 255, 0.2));
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        transform: scale(1.01); /* Slight zoom effect */
        opacity: 1;
    }

    /* Optional Dropdown Arrow Styling (Customizable) */
    .dropdown-input[b-ny29voj6pd]::after {
        content: '';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        border-style: solid;
        border-width: 5px 5px 0 5px;
        border-color: #fff transparent transparent transparent;
        pointer-events: none;
    }

/* Submit Button */
.dropdown-submit[b-ny29voj6pd] {
    min-height: 40px;
    width: 100%;
    max-width: 200px;
    padding: 0.5em 1em;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #4A3F98, #5e5dcd);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(74, 63, 152, 0.4);
}

    .dropdown-submit:hover[b-ny29voj6pd] {
        background-color: #5e5dcd;
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(74, 63, 152, 0.5);
    }

    .dropdown-submit:active[b-ny29voj6pd] {
        transform: scale(0.95);
        box-shadow: 0 3px 8px rgba(74, 63, 152, 0.3);
    }

back-button[b-ny29voj6pd] {
    display: flex;
    height: 2em;
    width: 100px;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    transition: all 0.2s linear;
    filter: invert();
    cursor: pointer;
    border: none;
}

    back-button > svg[b-ny29voj6pd] {
        margin-right: 5px;
        margin-left: 5px;
        font-size: 20px;
        transition: all 0.4s ease-in;
    }

    back-button:hover > svg[b-ny29voj6pd] {
        font-size: 1.2em;
        transform: translateX(-5px);
    }

/* Battery Grid (Horizontal Alignment) */
.battery-grid-horizontal[b-ny29voj6pd] {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.battery-option[b-ny29voj6pd] {
    text-align: center;
    cursor: pointer;
    max-width: 150px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(74, 63, 152, 0.3));
    border-radius: 15px;
    padding: 10px;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .battery-option img[b-ny29voj6pd] {
        width: 100%;
        border-radius: 10px;
        transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .battery-option:hover[b-ny29voj6pd] {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

        .battery-option:hover img[b-ny29voj6pd] {
            transform: scale(1.1);
        }

    .battery-option:active[b-ny29voj6pd] {
        transform: scale(0.95);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }

.battery-name[b-ny29voj6pd] {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
}

.battery-desc[b-ny29voj6pd] {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
}
/* _content/BGV1/Components/Pages/NotYourCar.razor.rz.scp.css */
.notyourcar-section[b-42cvx6gg3p] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin: 20px 10px;
}

.notyourcar-container[b-42cvx6gg3p] {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    padding: 10px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.left-content[b-42cvx6gg3p] {
    flex: 1;
    padding-right: 20px;
}

    .left-content h2[b-42cvx6gg3p] {
        margin-bottom: 10px;
        font-size: 1.5rem;
        color: black;
    }

    .left-content p[b-42cvx6gg3p] {
        margin: 0;
        font-size: 1rem;
        color: black;
    }

.center-content[b-42cvx6gg3p] {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .center-content img[b-42cvx6gg3p] {
        max-width: 200px;
    }

.right-content[b-42cvx6gg3p] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.small-image[b-42cvx6gg3p] {
    max-height: 60px;
    height: auto;
}

.button-wrap[b-42cvx6gg3p] {
    margin-top: 30px;
}

.left-content[b-42cvx6gg3p],
.right-content[b-42cvx6gg3p] {
    box-sizing: border-box;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .notyourcar-section[b-42cvx6gg3p] {
        height: auto;
    }

    .notyourcar-container[b-42cvx6gg3p] {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        backdrop-filter: blur(1px);
    }

    .left-content[b-42cvx6gg3p],
    .center-content[b-42cvx6gg3p],
    .right-content[b-42cvx6gg3p] {
        flex: none;
        text-align: center;
    }
}

.animated-button[b-42cvx6gg3p] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: greenyellow;
    box-shadow: 0 0 0 2px greenyellow;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    margin: auto;
}

    .animated-button svg[b-42cvx6gg3p] {
        position: absolute;
        width: 24px;
        fill: greenyellow;
        z-index: 9;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button .arr-1[b-42cvx6gg3p] {
        right: 16px;
    }

    .animated-button .arr-2[b-42cvx6gg3p] {
        left: -25%;
    }

    .animated-button .circle[b-42cvx6gg3p] {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background-color: greenyellow;
        border-radius: 50%;
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button .text[b-42cvx6gg3p] {
        position: relative;
        z-index: 1;
        transform: translateX(-12px);
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button:hover[b-42cvx6gg3p] {
        box-shadow: 0 0 0 12px transparent;
        color: #212121;
        border-radius: 12px;
    }

        .animated-button:hover .arr-1[b-42cvx6gg3p] {
            right: -25%;
        }

        .animated-button:hover .arr-2[b-42cvx6gg3p] {
            left: 16px;
        }

        .animated-button:hover .text[b-42cvx6gg3p] {
            transform: translateX(12px);
        }

        .animated-button:hover svg[b-42cvx6gg3p] {
            fill: #212121;
        }

    .animated-button:active[b-42cvx6gg3p] {
        scale: 0.95;
        box-shadow: 0 0 0 4px greenyellow;
    }

    .animated-button:hover .circle[b-42cvx6gg3p] {
        width: 220px;
        height: 220px;
        opacity: 1;
    }
/* _content/BGV1/Components/Pages/OrderConfirmed.razor.rz.scp.css */
.order-container[b-jk3c9xt7ft] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 800px;
    padding: 20px;
    padding-bottom: 40px;
}

.order[b-jk3c9xt7ft] {
    width: 100%;
    background: white;
    padding: 10px 20px 10px 20px;
    position: relative;
    text-align: left;
    margin-bottom: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    top: 80px;
    text-decoration-color: black;
}

@media (max-width: 1024px) {
    .order[b-jk3c9xt7ft] {
        width: calc(100% - 20px);
    }
}

.checkmark[b-jk3c9xt7ft] {
    width: 150px; 
    height: 150px;
    display: block;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeIn-b-jk3c9xt7ft 0.6s forwards, scaleUp-b-jk3c9xt7ft 0.6s 0.6s forwards;
}

/* 4. Background Circle Styling */
.checkmark__circle[b-jk3c9xt7ft] {
    fill: none; /* No fill */
    stroke: #28a745; /* Green stroke color */
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 166; /* Total length of the stroke */
    stroke-dashoffset: 166; /* Hide the stroke initially */
    animation: drawCircle-b-jk3c9xt7ft 0.6s forwards;
}

/* 5. Check Mark Styling */
.checkmark__check[b-jk3c9xt7ft] {
    fill: none; /* No fill */
    stroke: #28a745; /* Green stroke color */
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48; /* Total length of the stroke */
    stroke-dashoffset: 48; /* Hide the stroke initially */
    animation: drawCheck-b-jk3c9xt7ft 0.3s 0.6s forwards; /* Start after circle */
}

/* 6. Keyframe Animations */

/* Fade In the SVG */
@keyframes fadeIn-b-jk3c9xt7ft {
    to {
        opacity: 1;
    }
}

/* Scale Up the SVG */
@keyframes scaleUp-b-jk3c9xt7ft {
    to {
        transform: scale(1);
    }
}

/* Draw the Circle */
@keyframes drawCircle-b-jk3c9xt7ft {
    to {
        stroke-dashoffset: 0;
    }
}

/* Draw the Check Mark */
@keyframes drawCheck-b-jk3c9xt7ft {
    to {
        stroke-dashoffset: 0;
    }
}
/* _content/BGV1/Components/Pages/PowerUp.razor.rz.scp.css */
/* Center the glassmorphic container */
.power-up-section[b-iqb4pp5bkr] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    border-radius: 20px;
    margin-top: 80px
}

/* Content container with glassmorphic effect */
.content-container[b-iqb4pp5bkr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; /* Responsive width */
    max-width: 900px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Left-side text content */
.text-content[b-iqb4pp5bkr] {
    flex: 1;
    padding-right: 20px;
}

.heading[b-iqb4pp5bkr] {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Right-side image content */
.image-content[b-iqb4pp5bkr] {
    float: left;
    max-width: 60%;
}

.coin-image[b-iqb4pp5bkr] {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .content-container[b-iqb4pp5bkr] {
        flex-direction: column;
    }
    .text-content .heading[b-iqb4pp5bkr] {
        font-size: 2rem; /* Shrink text size on mobile */
    }

    .subheading[b-iqb4pp5bkr] {
        font-size: 1rem; /* Adjust subheading size */
    }

    .image-content[b-iqb4pp5bkr] {
        max-width: 100%;
        float: none;
    }
}

/* FAQ Section */
.battery-faq[b-iqb4pp5bkr] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    border-radius: 20px;
}

    .faq-wrapper[b-iqb4pp5bkr] {
        display: flex;
        flex-direction: row;
        gap: 30px;
        max-width: 1100px;
        width: 100%;
    }
@media (max-width: 768px) {
    .faq-wrapper[b-iqb4pp5bkr] {
        flex-direction: column;
    }
    .faq-image[b-iqb4pp5bkr],
    .faq-container[b-iqb4pp5bkr] {
        width: 100%; /* Ensure both stack and take full width */
    }
}

    /* Left-side Image */
    .faq-image[b-iqb4pp5bkr] {
        flex: 1;
    }

        .faq-image img[b-iqb4pp5bkr] {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

    /* Right-side FAQ */
.faq-container[b-iqb4pp5bkr] {
    flex: 1;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
}

    .faq-heading[b-iqb4pp5bkr] {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 20px;
        color: black;
    }

    /* FAQ Item */
    .faq-item[b-iqb4pp5bkr] {
        border-bottom: 1px solid #ddd;
        padding: 15px 0;
    }

        .faq-item:last-child[b-iqb4pp5bkr] {
            border-bottom: none;
        }

    .faq-question[b-iqb4pp5bkr] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.2rem;
        font-weight: 500;
        cursor: pointer;
        color: black;
        transition: color 0.3s ease;
    }

        .faq-question:hover[b-iqb4pp5bkr] {
            color: #4A90E2;
        }

    .faq-toggle[b-iqb4pp5bkr] {
        background: #333;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        font-size: 1.2rem;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    /* FAQ Answer */
    .faq-answer[b-iqb4pp5bkr] {
        margin-top: 10px;
        font-size: 1rem;
        color: black;
        line-height: 1.5;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }
/* _content/BGV1/Components/Pages/PrivacyPolicy.razor.rz.scp.css */
.background[b-qtl6bapxld] {

}

.privacy-container[b-qtl6bapxld] {
    display: flex;
    justify-content: center;
    top: 80px;
}
.privacy[b-qtl6bapxld] {
    background: black;
    max-width: 700px;
    padding: 10px 20px 10px 20px;
    position: relative;
    color: white;
    margin: 80px;
}
/* _content/BGV1/Components/Pages/SelectButton.razor.rz.scp.css */
.btn-conteiner[b-uev6bu96zn] {
    display: flex;
    --color-text: #ffffff;
    --color-background: #ff135a;
    --color-outline: #ff145b80;
    --color-shadow: #00000080;
}

.btn-content[b-uev6bu96zn] {
    display: flex;
    align-items: center;
    padding: 5px 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--color-text);
    background: var(--color-background);
    transition: 1s;
    border-radius: 100px;
    box-shadow: 0 0 0.2em 0 var(--color-background);
}

    .btn-content:hover[b-uev6bu96zn], .btn-content:focus[b-uev6bu96zn] {
        transition: 0.5s;
        -webkit-animation: btn-content 1s;
        animation: btn-content-b-uev6bu96zn 1s;
        outline: 0.1em solid transparent;
        outline-offset: 0.2em;
        box-shadow: 0 0 0.4em 0 var(--color-background);
    }

    .btn-content .icon-arrow[b-uev6bu96zn] {
        transition: 0.5s;
        margin-right: 0px;
        transform: scale(0.6);
    }

    .btn-content:hover .icon-arrow[b-uev6bu96zn] {
        transition: 0.5s;
        margin-right: 25px;
    }

.icon-arrow[b-uev6bu96zn] {
    width: 20px;
    margin-left: 15px;
    position: relative;
    top: 6%;
}

/* SVG */
#arrow-icon-one[b-uev6bu96zn] {
    transition: 0.4s;
    transform: translateX(-60%);
}

#arrow-icon-two[b-uev6bu96zn] {
    transition: 0.5s;
    transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three[b-uev6bu96zn] {
    animation: color_anim-b-uev6bu96zn 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one[b-uev6bu96zn] {
    transform: translateX(0%);
    animation: color_anim-b-uev6bu96zn 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two[b-uev6bu96zn] {
    transform: translateX(0%);
    animation: color_anim-b-uev6bu96zn 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim-b-uev6bu96zn {
    0% {
        fill: white;
    }

    50% {
        fill: var(--color-background);
    }

    100% {
        fill: white;
    }
}

/* Button animations */
@-webkit-keyframes btn-content {
    0% {
        outline: 0.2em solid var(--color-background);
        outline-offset: 0;
    }
}

@keyframes btn-content-b-uev6bu96zn {
    0% {
        outline: 0.2em solid var(--color-background);
        outline-offset: 0;
    }
}
/* _content/BGV1/Components/Pages/Selector.razor.rz.scp.css */
/* Section Styles */
.selector-section[b-04sewcdkzv] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10vh 0;
    background-image: url('images/BatteryGuru3.svg'), radial-gradient(circle, var(--color2032), var(--color2025));
    background-position: center, 0 0;
    background-repeat: repeat, repeat;
    background-size: 20rem, auto;
    border-radius: 20px;
    margin: 20px 10px;
    text-align: center;
}

/* Container */
.selector-container[b-04sewcdkzv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(2px);
    max-width: 900px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

/* Title */
.selector-title[b-04sewcdkzv] {
    font-size: 1.8rem;
    color: var(--text-primary, #ffffff);
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

/* Image */
.selector-image[b-04sewcdkzv] {
    margin: 20px 0;
    width: 200px;
}

/* Buttons Wrapper */
.selector-buttons[b-04sewcdkzv] {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Buttons */
.selector-button[b-04sewcdkzv] {
    padding: 12px 24px;
    font-size: 16px;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    text-align: center;
    min-width: 150px;
}

    /* Primary Button */
    .selector-button.primary[b-04sewcdkzv] {
        background-color: #40089c;
    }

        .selector-button.primary:hover[b-04sewcdkzv] {
            background-color: #5a0fc8;
            transform: scale(1.03);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
        }

        .selector-button.primary:active[b-04sewcdkzv] {
            transform: scale(0.95);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

    /* Secondary Button */
    .selector-button.secondary[b-04sewcdkzv] {
        background-color: #000;
    }

        .selector-button.secondary:hover[b-04sewcdkzv] {
            background-color: #333;
            transform: scale(1.03);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
        }

        .selector-button.secondary:active[b-04sewcdkzv] {
            transform: scale(0.95);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

/* Media Queries */
@media (max-width: 768px) {
    .selector-container[b-04sewcdkzv] {
        width: calc(100% - 20px);
    }

    .selector-buttons[b-04sewcdkzv] {
        flex-wrap: wrap;
    }

    .selector-button[b-04sewcdkzv] {
        min-width: unset;
        width: 100%;
        text-align: center;
    }
}
/* _content/BGV1/Components/Pages/SelectYourVehicle.razor.rz.scp.css */
.app-ui-layout[b-du98rd7kfc] {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    position: relative;
    top: 80px;
}

.vehicle-select-bg[b-du98rd7kfc] {
    background-image: radial-gradient(circle, #373737, #0e0e0e);
    min-height: 120vh;
}

.vehicle-select-banner[b-du98rd7kfc] {
    justify-content: center;
    height: auto;
}

.remote-battery-img[b-du98rd7kfc] {
    max-width: 35%;
    max-height: 35%;
}

.vehicle-select-form[b-du98rd7kfc], .battery-options[b-du98rd7kfc] {
    background: radial-gradient(circle, #1b1b1b, #0e0e0e);
    color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3), inset 0px -3px 5px rgba(255, 255, 255, 0.1), inset 0px 3px 5px rgba(0, 0, 0, 0.5);
    outline: 10px solid #2a2a2a;
}

.heading-cont[b-du98rd7kfc] {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    padding: 0 10px;
}

.heading[b-du98rd7kfc] {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}

.subheading[b-du98rd7kfc] {
    font-size: 16px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .heading-cont[b-du98rd7kfc] {
        font-size: 18px;
        line-height: 1.5;
    }

    .heading[b-du98rd7kfc] {
        font-size: 20px;
    }

    .subheading[b-du98rd7kfc] {
        font-size: 14px;
    }
}

.form-group[b-du98rd7kfc] {
    margin-bottom: 15px;
    text-align: left;
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-weight: 500;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .form-group:hover[b-du98rd7kfc] {
        transform: translateY(-3px);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    }

    .form-group label[b-du98rd7kfc] {
        font-size: 16px;
        font-weight: bold;
        color: #888;
        margin-bottom: 5px;
        display: block;
        transition: color 0.1s ease;
    }

        .form-group label:hover[b-du98rd7kfc] {
            color: #fff;
        }

    .form-group input[b-du98rd7kfc],
    .form-group select[b-du98rd7kfc] {
        width: 100%;
        padding: 8px 10px;
        border-radius: 8px;
        border: 1px solid #ccc;
        background-color: #292929;
        color: #fff;
        font-size: 16px;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

        .form-group input:focus[b-du98rd7kfc],
        .form-group select:focus[b-du98rd7kfc] {
            border-color: #62be28;
            box-shadow: 0 0 4px #fff;
            outline: none;
        }

        .form-group input:hover[b-du98rd7kfc],
        .form-group select:hover[b-du98rd7kfc] {
            border-color: #777;
        }

.form-control[b-du98rd7kfc] {
    width: 100%;
    padding: 8px;
    border-radius: 20px;
    border: 1px solid #ccc;
    color: black;
}

.find-button[b-du98rd7kfc] {
    display: flex;
    justify-content: center;
}

.battery-grid[b-du98rd7kfc] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.battery-option[b-du98rd7kfc] {
    background: #1a1a1a;
    color: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
    justify-items: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.battery-option:hover[b-du98rd7kfc] {
    background-color: #333;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
}

.battery-image[b-du98rd7kfc] {
    max-width: 50%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.battery-option:hover .battery-image[b-du98rd7kfc] {
    transform: scale(1.1);
}

.battery-option:active[b-du98rd7kfc] {
    transform: scale(0.95);
}

.battery-name[b-du98rd7kfc] {
    margin: 10px 0;
    font-weight: bold;
    font-size: 20px;
    color: white;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid white;
    padding-bottom: 1px;
}

.buy-now-btn[b-du98rd7kfc] {
    background: #4a4a4a;
    color: white;
    border: none;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


button[b-du98rd7kfc] {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #62be28;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 15px;
}

    button:hover[b-du98rd7kfc] {
        background: #FFCB05;
    }

    button > svg[b-du98rd7kfc] {
        width: 34px;
        margin-left: 10px;
        transition: transform 0.3s ease-in-out;
    }

    button:hover svg[b-du98rd7kfc] {
        transform: translateX(5px);
    }

    button:active[b-du98rd7kfc] {
        transform: scale(0.95);
    }


back-button[b-du98rd7kfc] {
    display: flex;
    height: 2em;
    width: 100px;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    transition: all 0.2s linear;
    cursor: pointer;
    border: none;
}

    back-button > svg[b-du98rd7kfc] {
        margin-right: 5px;
        margin-left: 5px;
        font-size: 20px;
        filter: invert();
        transition: all 0.4s ease-in;
    }

    back-button:hover > svg[b-du98rd7kfc] {
        font-size: 1.2em;
        transform: translateX(-5px);
    }

.bg-fade-in[b-du98rd7kfc] {
    animation: opac 0.8s
}
/* _content/BGV1/Components/Pages/TermsOfService.razor.rz.scp.css */
.background[b-r1duh80a4d] {
}

.terms-container[b-r1duh80a4d] {
    display: flex;
    justify-content: center;
    top: 80px;
}

.terms[b-r1duh80a4d] {
    background: black;
    max-width: 700px;
    padding: 10px 20px 10px 20px;
    position: relative;
    color: white;
    margin: 80px;
    text-align: left;
}
/* _content/BGV1/Components/Pages/Updates.razor.rz.scp.css */
.updates-section[b-sq1xgwpffy] {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
}

.updates-container[b-sq1xgwpffy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

    .updates-container h2[b-sq1xgwpffy] {
        font-size: 2rem;
        margin: 0;
    }

.updates-image[b-sq1xgwpffy] {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.updates-container p[b-sq1xgwpffy] {
    font-size: 1rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

.input-group[b-sq1xgwpffy] {
    display: flex;
    align-items: stretch;
}

.input[b-sq1xgwpffy] {
    min-height: 50px;
    max-width: 200px;
    padding: 0 1rem;
    color: #fff;
    font-size: 15px;
    border: 1px solid #4A3F98;
    border-radius: 20px 0 0 20px;
    background-color: transparent;
}

.email-submit[b-sq1xgwpffy] {
    min-height: 50px;
    padding: .5em 1em;
    border: none;
    border-radius: 0 20px 20px 0;
    background-color: #4A3F98;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

    .email-submit:hover[b-sq1xgwpffy] {
        background-color: #5e5dcd;
    }

.input:focus[b-sq1xgwpffy], .input:focus-visible[b-sq1xgwpffy] {
    border-color: #3898EC;
    outline: none;
}

/* _content/BGV1/Components/Pages/VerifiedBadge.razor.rz.scp.css */
.authorize-net-seal[b-t9c3uteif4] {
    margin-top: 10px;
}
/* _content/BGV1/Components/Pages/Video.razor.rz.scp.css */
.image-overlay-container[b-itjsj0mw59] {
    position: relative;
    top: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
}

.hero-image[b-itjsj0mw59] {
    width: 100%; /* Full-width image spanning the page */
    height: auto; /* Maintain aspect ratio */
    animation: fadeInDown-b-itjsj0mw59 1s ease forwards;
    position: relative;
    margin: 0 auto;
    z-index: 1;
    padding-bottom: 20px;
    animation: fadeInDown-b-itjsj0mw59 1s ease forwards;
}
@keyframes fadeInDown-b-itjsj0mw59 {
    from {
        opacity: 0;
        transform: translateY(-20px); /* Adjust starting position */
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overlay-content[b-itjsj0mw59] {
    position: absolute;
    top: 50%; /* Center vertically within the hero image */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Correct centering */
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent background */
    border-radius: 20px;
    padding: 0px 5px 10px 5px;
}

.video-container[b-itjsj0mw59] {
    display: flex;
    position: relative;
    justify-content: center;
    margin-top: -30px; /* Pull the video up slightly to reduce the gap */
}

.webm-video[b-itjsj0mw59] {
    width: calc(100% - 40px); /* Add padding on each side */
    max-width: 1200px; /* Limit video width for larger screens */
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Add subtle shadow */
}

@media (min-width: 1200px) {
    .video-container[b-itjsj0mw59] {
        margin-top: -60px; /* Pull the video up higher on wide displays */
    }
}
/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
    .overlay-content[b-itjsj0mw59] {
        max-width: 100%;
        width: 90%;
    }

    .webm-video[b-itjsj0mw59] {
        width: calc(100% - 20px); /* Narrower padding on tablets */
    }

    .video-container[b-itjsj0mw59] {
    }
}

/* Small Screens (Mobile) */
@media (max-width: 768px) {
    .overlay-content[b-itjsj0mw59] {
        max-width: 100%;
        width: 90%;
        top: 80%; /* Adjust placement for mobile screens */
        font-size: 14px; /* Reduce font size */
    }

    .webm-video[b-itjsj0mw59] {
        width: calc(100% - 20px); /* Full width with minimal margin */
        max-width: 100%; /* Ensure it fits small screens */
        margin-top: 180px;
    }

    .video-container[b-itjsj0mw59] {
         /* Ensure smooth flow with hero image */
    }
}
/* _content/BGV1/Components/Pages/Wheel.razor.rz.scp.css */
.background[b-h9nmwwxv8v] {
    position: relative;
    min-height: 100vh;
}

.battery-wheel[b-h9nmwwxv8v] {
    width: 80%;
    overflow: hidden;
    position: relative;
}

.wheel[b-h9nmwwxv8v] {
    display: flex;
    gap: 20px;
    animation: scroll-b-h9nmwwxv8v 20s linear infinite;
}

    .wheel img[b-h9nmwwxv8v] {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

@keyframes scroll-b-h9nmwwxv8v {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% + 80%));
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .wheel img[b-h9nmwwxv8v] {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1200px) {
    .battery-wheel[b-h9nmwwxv8v] {
        width: 60%;
    }
}
