/* _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/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; }
}
