/* _content/Scrooge.Site/Components/Fragments/PricingPanel.razor.rz.scp.css */
.card[b-8sft5vmyzx] {
    border: none;
    border-radius: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    width: 325px;
    padding-left: .75em;
    padding-right: .75em;
}

    .card:hover[b-8sft5vmyzx] {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

.card-header[b-8sft5vmyzx] {
    padding: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background-color: #4CAF50;
    color: white;
}


.card-title[b-8sft5vmyzx] {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

    h1.card-title[b-8sft5vmyzx] {
        padding: 0em;
    }

.card-body[b-8sft5vmyzx] {
    padding: .5rem .5rem;
}

.pricing-card-title[b-8sft5vmyzx] {
    font-size: 2.0rem;
    font-weight: bold;
    color: #000;
}

.original-price[b-8sft5vmyzx] {
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
}

.discounted-price[b-8sft5vmyzx] {
    color: #000000;
    font-weight: bolder;
}

.text-muted[b-8sft5vmyzx] {
    font-size: 0.9rem;
}

.list-unstyled[b-8sft5vmyzx] {
    padding-left: 0;
    list-style: none;
}

    .list-unstyled li[b-8sft5vmyzx] {
        padding: 0.2rem 0;
    }


.btn[b-8sft5vmyzx] {
    border-radius: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    background-color: #4CAF50;
    color: white;
}

    .btn:hover[b-8sft5vmyzx] {
        background-color: #45a049;
        color: white;
    }

.shadow-sm[b-8sft5vmyzx] {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mb-4[b-8sft5vmyzx] {
    margin-bottom: 1.5rem;
}
/* _content/Scrooge.Site/Components/HomeSections/CTA.razor.rz.scp.css */
#cta[b-zrojq1zwsv] {
    background-color: #7dce82;
    padding: 20px;
    text-align: center;
}
/* _content/Scrooge.Site/Components/HomeSections/Features.razor.rz.scp.css */

.container[b-6keqppjir1] {
    padding: 50px 0;
}

.feature-item[b-6keqppjir1] {
    cursor: pointer;
    margin: 20px 0;
    position: relative;
    width: 100%;
    height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff; /* Makes the text white for better readability */
    text-align: center; /* Centers text horizontally */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content vertically */
    justify-content: center; /* Centers content horizontally */
}

    .feature-item[b-6keqppjir1]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity to darken */
        z-index: 0;
    }

    .feature-item.privacy[b-6keqppjir1] {
        background-image: url('/images/data-privacy.png');
    }

    .feature-item.secure-transaction-downloads[b-6keqppjir1] {
        background-image: url('/images/secure-transaction-downloads.png');
    }

    .feature-item.financial-insights[b-6keqppjir1] {
        background-image: url('/images/financial-insights.png');
    }

    .feature-item h3[b-6keqppjir1], .feature-item p[b-6keqppjir1] {
        position: relative;
        z-index: 1;
    }

    .feature-item:hover[b-6keqppjir1] {
        transform: translateY(-10px);
    }

    .feature-item h3[b-6keqppjir1] {
        margin-bottom: 10px;
    }

    .feature-item p[b-6keqppjir1] {
        position: relative;
        z-index: 2;
        margin-top: 10px;
    }

.feature[b-6keqppjir1] {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ccc;
    margin: 10px 0;
}

.blurb[b-6keqppjir1] {
    background-color: #f0f0f0;
    padding: 0 10px; /* Horizontal padding only */
    margin-top: 0;
    border-radius: 5px;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s, padding 0.5s ease-in-out, margin-top 0.5s ease-in-out;
}

.blurb[b-6keqppjir1] {
    font-size: 1.5em;
}

    .blurb.collapsed[b-6keqppjir1] {
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
    }

    .blurb.expanded[b-6keqppjir1] {
        height: auto; /* Adjust this value to match your content height */
        padding-top: 10px; /* Adjust for visual spacing */
        padding-bottom: 10px; /* Adjust for visual spacing */
        margin-top: 10px; /* Adjust for visual spacing */
    }
/* _content/Scrooge.Site/Components/HomeSections/Hero.razor.rz.scp.css */
#hero[b-juz05un988] {
    background: #f4f4f4;
    color: #333;
    padding: 50px 0;
    text-align: center;
}

    #hero h2[b-juz05un988] {
        font-size: 2.5em;
    }

    #hero p[b-juz05un988] {
        font-size: 1.2em;
    }

    #hero button[b-juz05un988] {
        background: #333;
        color: #fff;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
    }

        #hero button:hover[b-juz05un988] {
            background: #555;
        }
/* _content/Scrooge.Site/Components/HomeSections/HowItWorks.razor.rz.scp.css */
#how-it-works[b-98yggmjojs] {
    background-color: #7dce82; 
}

#how-it-works ol[b-98yggmjojs] {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

    #how-it-works ol li[b-98yggmjojs] {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 20px;
        margin: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        flex: 1;
        min-width: 250px;
        max-width: 300px;
        text-align center;
    }
/* _content/Scrooge.Site/Components/HomeSections/Testimonials.razor.rz.scp.css */
#testimonials .container[b-fd76cmmnkn] {
    position: relative;
    overflow: hidden;
    height: 200px; /* Adjust based on your content size */
}

#testimonials .testimonial[b-fd76cmmnkn] {
    position: absolute;
    width: 100%;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.testimonial.hidden[b-fd76cmmnkn] {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
}

.testimonial.active[b-fd76cmmnkn] {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.testimonial.exiting[b-fd76cmmnkn] {
    transform: translateX(-100%);
    opacity: 1; /* Make sure it's visible during the transition */
    visibility: visible;
}
/* _content/Scrooge.Site/Components/HomeSections/TopHeader.razor.rz.scp.css */
.top-header[b-h8r7qxglyy] {
    background-image: url('/images/top-header.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 512px;
    width: 100%;
    color: #FFF;
    text-align: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
    .top-header *[b-h8r7qxglyy] {
        color: #FFF;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
    }
    .top-header h1[b-h8r7qxglyy] {
        margin: 0;
        font-size: 4em;
        margin-bottom: 1em
    }
    .top-header button[b-h8r7qxglyy] {
        text-shadow:none
    }

.top-header-cta[b-h8r7qxglyy] {
    text-align: center;
}
/* _content/Scrooge.Site/Components/Layout/MainLayout.razor.rz.scp.css */
html[b-f8voudzwrq], body[b-f8voudzwrq] {
    height: 100%;
    margin: 0;
}

.page[b-f8voudzwrq] {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the page takes the full height of the viewport */
}

main[b-f8voudzwrq] {
    flex: 1;
    background-image: radial-gradient(ellipse at top left, white 60%, #7dce82 80%);
    display: flex;
    flex-direction: column;
}

.content[b-f8voudzwrq] {
    flex: 1;
}

.footer[b-f8voudzwrq] {
    background-color: #333; /* Dark background color */
    color: white; /* White text color */
    padding: 20px;
    width: 100%;
    display: flex; /* Enables flexbox for footer columns */
    justify-content: space-around; /* Distributes columns evenly */
    text-align: center;
    margin-top: auto; /* Pushes the footer to the bottom if content is short */
}

.footer-column[b-f8voudzwrq] {
    flex: 1;
    display: flex;
    flex-direction: column; /* Ensures content in columns is vertical */
    margin: 10px;
}

    .footer-column h4[b-f8voudzwrq] {
        margin-bottom: 10px;
    }

    .footer-column a[b-f8voudzwrq] {
        color: white; /* Ensures links are white */
        text-decoration: none; /* Removes underline from links */
        margin-bottom: 5px; /* Adds space between links */
    }

        .footer-column a:hover[b-f8voudzwrq] {
            text-decoration: underline;
        }

@media (max-width: 640.98px) {
    .top-row[b-f8voudzwrq] {
        justify-content: space-between;
    }

        .top-row[b-f8voudzwrq]  a, .top-row[b-f8voudzwrq]  .btn-link {
            margin-left: 0;
        }

    .footer[b-f8voudzwrq] {
        flex-direction: column; /* Stack footer columns vertically on small screens */
    }

    .footer-column[b-f8voudzwrq] {
        margin: 5px 0;
    }
}

@media (min-width: 641px) {
    .page[b-f8voudzwrq] {
        flex-direction: column;
    }

    .sidebar[b-f8voudzwrq] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-f8voudzwrq] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-f8voudzwrq]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-f8voudzwrq], article[b-f8voudzwrq] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-f8voudzwrq] {
    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-f8voudzwrq] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Scrooge.Site/Components/Layout/TopNav.razor.rz.scp.css */
.top-row[b-7rxsxh2z08] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    position: relative;
}

    .top-row[b-7rxsxh2z08]  a, .top-row[b-7rxsxh2z08]  .btn-link, .top-row[b-7rxsxh2z08]  .dropbtn {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-7rxsxh2z08]  a:hover, .top-row[b-7rxsxh2z08]  .btn-link:hover, .top-row[b-7rxsxh2z08]  .dropbtn:hover {
            text-decoration: underline;
        }

    .top-row[b-7rxsxh2z08]  .home-link {
        margin-right: auto;
        margin-left: 0;
    }

        .top-row[b-7rxsxh2z08]  .home-link h2 {
            display: inline;
        }

.dropdown[b-7rxsxh2z08] {
    position: relative;
    display: inline-block;
}

.dropdown-content[b-7rxsxh2z08] {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
}

    .dropdown-content[b-7rxsxh2z08]  a {
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content[b-7rxsxh2z08]  a:hover {
            background-color: #f1f1f1;
        }

.show[b-7rxsxh2z08] {
    display: block;
}

.hide[b-7rxsxh2z08] {
    display: none;
}

@media (max-width: 640.98px) {
    .top-row[b-7rxsxh2z08] {
        justify-content: space-between;
    }

        .top-row[b-7rxsxh2z08]  a, .top-row[b-7rxsxh2z08]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .top-row[b-7rxsxh2z08] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-7rxsxh2z08]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-7rxsxh2z08], article[b-7rxsxh2z08] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/Scrooge.Site/Components/Pages/Pricing.razor.rz.scp.css */
.container[b-c14mt7pof3] {
    margin-top: 5rem;
}

.mt-5[b-c14mt7pof3] {
    margin-top: 5rem;
}

.mb-4[b-c14mt7pof3] {
    margin-bottom: 1.5rem;
}

.mb-5[b-c14mt7pof3] {
    margin-bottom: 2rem;
}



.text-center[b-c14mt7pof3] {
    text-align: center;
}


.table-narrow[b-c14mt7pof3] {
    max-width: 600px; /* Limit table width */
    margin: 0 auto; /* Center table */
    background-color: #f8f9fa; /* Light background color */
}

    .table-narrow th[b-c14mt7pof3],
    .table-narrow td[b-c14mt7pof3] {
        width: 25%; /* Make Free and Paid columns narrower */
    }


