/* _content/Website/Components/AddToCart/TimeSlotLean/Parts/PriceButton.razor.rz.scp.css */
.price-container[b-qaext5gq51] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem; /* Adds equal spacing between all child elements */
    margin-top: 2rem; /* Adds top margin for spacing from other content */
}

.price-label[b-qaext5gq51] {
    font-size: 1.25rem; /* Slightly larger for emphasis */
    margin-bottom: 0.5rem;
}

.price-value[b-qaext5gq51],
.price-message[b-qaext5gq51] {
    font-size: 1rem;
    color: #333; /* Adjust color if necessary */
}

.reservation-button[b-qaext5gq51] {
    padding: 0.75rem 2rem; /* Adds padding for a larger button */
    margin-top: 1rem; /* Ensures separation from the message or value */
}
/* _content/Website/Components/Calendar/DateOnlySelector.razor.rz.scp.css */


/*# sourceMappingURL=DateOnlySelector.razor.css.map */
/* _content/Website/Components/Cart/Steps/Payment/SelectPaymentMethodList.razor.rz.scp.css */
/* ===== Layout: xs = 1 kolom full-width; md+ tegels met max 300px ===== */
.payment-grid[b-s0y3ah3iag] {
    display: grid;
    grid-template-columns: 1fr; /* 1 column on small screens */
    gap: .75rem;
}

@media (min-width: 768px) {
    .payment-grid[b-s0y3ah3iag] {
        grid-template-columns: repeat(2, 1fr); /* exactly two columns */
        justify-content: start;
    }
}


/* ===== Kaart-stijl optie ===== */
.payment-option[b-s0y3ah3iag] {
    position: relative;               /* nodig voor checkmark positioning */
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem .95rem;
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: .75rem;
    background: #fff;
    cursor: pointer;
    user-select: none;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

/* Hover/active/checked states */
.payment-option:hover[b-s0y3ah3iag] {
    border-color: var(--bs-primary, #0d6efd);
    box-shadow: 0 0 0 .15rem rgba(13, 110, 253, .10);
}

.payment-option.is-checked[b-s0y3ah3iag] {
    border-color: var(--bs-primary, #0d6efd);
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .15);
    background: #f8fbff;
}

/* Toetsenbord focus (via het verborgen radio input) */
.payment-option:focus-within[b-s0y3ah3iag] {
    outline: none;
    border-color: var(--bs-primary, #0d6efd);
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

/* ===== Content in de button ===== */
.payment-option img[b-s0y3ah3iag] {
    width: 36px;
    height: 24px;
    object-fit: contain;
    flex: 0 0 auto;
}

.payment-option .title[b-s0y3ah3iag] {
    font-weight: 600;
    line-height: 1.1;
    flex: 1 1 auto;
}

/* ===== Vinkje (checkmark) rechtsboven bij geselecteerde optie ===== */
.payment-option .checkmark[b-s0y3ah3iag] {
    display: none;                    /* standaard verborgen */
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 0.8rem;
    border-radius: 50%;
    color: #fff;
    background-color: var(--bs-primary, #0d6efd);
    box-shadow: 0 0 0 2px #fff;       /* wit randje voor contrast */
    pointer-events: none;             /* niet klikbaar */
}

.payment-option.is-checked .checkmark[b-s0y3ah3iag] {
    display: inline-block;
}

/* ===== Radios verbergen maar toegankelijk houden ===== */
.visually-hidden[b-s0y3ah3iag] {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== Simpele skeleton placeholders tijdens laden ===== */
.payment-skeleton[b-s0y3ah3iag] {
    height: 60px;
    border-radius: .75rem;
    background: linear-gradient(90deg, #f2f2f2 25%, #e9e9e9 37%, #f2f2f2 63%);
    background-size: 400% 100%;
    animation: shimmer-b-s0y3ah3iag 1.2s ease-in-out infinite;
}

@keyframes shimmer-b-s0y3ah3iag {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

/* ===== High-contrast/fallback hints ===== */
@media (prefers-reduced-motion: reduce) {
    .payment-option[b-s0y3ah3iag],
    .payment-skeleton[b-s0y3ah3iag] {
        transition: none;
        animation: none;
    }
}
/* _content/Website/Components/Cart/Steps/Upsale/BijverkoopList.razor.rz.scp.css */

.product-card ins[b-vzb7ctvl9p] { text-decoration: none; }
.price-badge[b-vzb7ctvl9p] { min-width: 100px; }
.price-badge .h5[b-vzb7ctvl9p], .price-badge h5[b-vzb7ctvl9p] { line-height: 1; }
.product-card .price-badge .badge[b-vzb7ctvl9p] {
    font-size: 0.9rem;
    border-radius: 0.5rem;
}
@media (max-width: 575.98px) {
    /* op XS mag prijs boven de actions/tekst komen als je daar nog knoppen toevoegt */
    .price-badge[b-vzb7ctvl9p] { margin-left: auto; }
}
/* _content/Website/Components/CustomErrorBoundary.razor.rz.scp.css */
.error-boundary[b-1ki4kizpne] {
    background-color: #ffe5e5;
    color: #900;
    padding: 15px;
    border: 1px solid #900;
    border-radius: 5px;
}
/* _content/Website/Components/Flags/FlagImageFixedWidth.razor.rz.scp.css */
button.flag-button[b-9oai6azm3a] {
    background: none; /* Remove background */
    border: none; /* Remove border */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    cursor: pointer; /* Change cursor to pointer */
    width: 30px; /* Set fixed width */
    height: 30px; /* Set fixed height */
    display: inline-block; /* Align button with other elements */
}

    button.flag-button img[b-9oai6azm3a] {
        width: 100%; /* Image takes full width of the button */
        height: 100%; /* Image takes full height of the button */
        display: block; /* Remove any gaps */
    }
/* _content/Website/Components/Forms/InfoIcon.razor.rz.scp.css */
.tooltip-container[b-qq8y4eo9gz] {
    position: relative;
    display: inline-block;
    margin-left: 8px;
    cursor: pointer;
}

.question-mark[b-qq8y4eo9gz] {
    font-size: 14px;
    color: gray;
    font-weight: bold;
    border: 1px solid gray;
    border-radius: 50%;
    padding: 2px 5px;
    text-align: center;
    width: 18px;
    height: 18px;
    line-height: 16px;
    display: inline-block;
}

.tooltip-text[b-qq8y4eo9gz] {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    bottom: 125%; /* Adjust this if you need the tooltip in a different position */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000; /* Ensures the tooltip appears above other elements */
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: adds depth to the tooltip */
}

.tooltip-container:hover .tooltip-text[b-qq8y4eo9gz] {
    visibility: visible;
    opacity: 1;
}
.tooltip-visible[b-qq8y4eo9gz]{
    visibility: visible;
    opacity: 1;
}
/* _content/Website/Components/Kuula/Kuula.razor.rz.scp.css */
.ku-embed[b-v5oezum5w1] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* _content/Website/Components/Loader/Loader.razor.rz.scp.css */
 
/* _content/Website/Components/LoadText.razor.rz.scp.css */

    /* Base styles for the loading text */
.spinner-text-inner[b-txvzofphud] {
    color: #b3b3b3;

    display: flex;
    align-items: center;
}

/* Base styles for dots */
.dot[b-txvzofphud] {
    opacity: 0; /* Start hidden */
    animation: blink-b-txvzofphud 1.5s infinite;
}

/* Delays for each dot */
.dot1[b-txvzofphud] {
    animation-delay: 0s;
}

.dot2[b-txvzofphud] {
    animation-delay: 0.3s;
}

.dot3[b-txvzofphud] {
    animation-delay: 0.6s;
}

/* Keyframes for blinking animation */
@keyframes blink-b-txvzofphud {
     0% {
         opacity: 0;
     }
     50% {
         opacity: 1;
     }
     100% {
         opacity: 0;
     }
 }

/* _content/Website/Components/SelectLanguage.razor.rz.scp.css */
.flag-button[b-iviri91gx6]{
    margin:0;
    padding:0;
    border:none;
    background:none;
    cursor:pointer;

}
/* _content/Website/Components/Spinner.razor.rz.scp.css */
.spinner-overlay[b-o1knuw3nj4] {
    position: fixed; /* Fixed to the viewport */
    top: 0;
    left: 0;
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align spinner towards the top */
    padding-top: 33vh; /* Push the spinner down to 33% of the viewport height */
    z-index: 9999;
}

.spinner-content[b-o1knuw3nj4] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner-border[b-o1knuw3nj4] {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

.spinner-text[b-o1knuw3nj4] {
    color: white;
    margin-top: 10px; /* Space between the spinner and text */
    font-size: 1.2rem;
}
/* _content/Website/Components/Widgets/ShopCategorieWidget.razor.rz.scp.css */
/* Base styles for the category list */
.widget.category-list[b-dqlc4qao5d] {
    padding: 20px;
    background-color: #f9f9f9; /* Optional background color */
    border: 1px solid #ddd;
    border-radius: 4px;
}

.widget.category-list h4[b-dqlc4qao5d] {
    margin-bottom: 10px;
    font-weight: bold;
}

/* Styles for the first-level list items */
.widget.category-list > ul > li[b-dqlc4qao5d] {
    list-style-type: none;
    margin: 5px 0;
    position: relative;
    padding-left: 20px; /* Space for triangle */
}

/* Triangle marker for first-level items */
.widget.category-list > ul > li[b-dqlc4qao5d]::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
    font-size: 0.6em;
}

/* Nested second-level list styling */
.widget.category-list > ul > li > ul[b-dqlc4qao5d] {
    margin: 0;
    padding-left: 20px; /* Indentation for second-level items */
}

.widget.category-list > ul > li > ul > li[b-dqlc4qao5d] {
    list-style-type: disc; /* Disc marker for second level */
    margin: 5px 0;
    padding-left: 0px; /* Align with the disc marker */
}

/* Link styling */
.widget.category-list a[b-dqlc4qao5d] {
    text-decoration: none;
    color: #333;
}

/* Active item styling */
.widget.category-list li.active a[b-dqlc4qao5d] {
    font-weight: bold;
    color: #007bff; /* Optional highlight color */
}
/* _content/Website/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-wvpzi7ue15] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-wvpzi7ue15] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/Website/Layout/NavMenu/Simple/Navigation.razor.rz.scp.css */
/*.navbar {*/
/*    padding: 0.75rem 1rem;*/
/*    margin-bottom:20px;*/
/*}*/

/*.navbar-brand {*/
/*    font-weight: bold;*/
/*    color: #333;*/
/*}*/

/*.navbar-brand:hover {*/
/*    color: #0056b3;*/
/*}*/

/*.nav-link {*/
/*    color: #555;*/
/*    margin-right: 1rem;*/
/*    transition: color 0.3s;*/
/*}*/

/*.nav-link:hover {*/
/*    color: #0056b3;*/
/*}*/

/*.nav-item:last-child .nav-link {*/
/*    margin-right: 0;*/
/*}*/

/*.navbar-toggler {*/
/*    border: none;*/
/*}*/

/*.navbar-toggler-icon {*/
/*    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");*/
/*}*/
/* _content/Website/Layout/TopBar/TopBar.razor.rz.scp.css */
#top-bar a[b-gpb11hqiyw]{
    color:white;
}
/* _content/Website/Pages/Category/Subcategories/SubcategoryListItem.razor.rz.scp.css */
/* _content/Website/Pages/CheckOut/Bedankt/Bedankt.razor.rz.scp.css */
@media print {
    @page { margin: 0; }
    body[b-oxnhw5awi0] { margin: 1.6cm; }
}
/* _content/Website/Pages/CheckOut/CheckoutPage.razor.rz.scp.css */
