/* _content/Diomex.Framework.UI.Blazor/BarcodeScanner.razor.rz.scp.css */
.barcodeScannerVideo[b-n192320yqn] {
    width: 100%;
}

@media (max-height: 730px) {

    .barcodeScannerVideo[b-n192320yqn] {
        max-height: 30vh;
    }
}
/* _content/Diomex.Framework.UI.Blazor/Common/Button.razor.rz.scp.css */
.root[Button] {
    padding-block: unset;
    padding-inline: unset;
    border-width: unset;
    border-style: unset;
    border-color: unset;
    border-image: unset;
    background-color: unset;
    text-align: unset;
}

    .root.resultOk[Button] {
        background-color: var(--dialogResultYesColor);
    }

        .root.resultOk[Button]  [Label].root {
            color: var(--dialogResultYesContrastColor);
        }

    .root.resultYes[Button] {
        background-color: var(--dialogResultYesColor);
    }

        .root.resultYes[Button]  [Label].root {
            color: var(--dialogResultYesContrastColor);
        }

    .root.resultNo[Button] {
        background-color: var(--dialogResultNoColor);
    }

        .root.resultNo[Button]  [Label].root {
            color: var(--dialogResultNoContrastColor);
        }

    .root.resultCancel[Button] {
        background-color: var(--dialogResultCancelColor);
    }

        .root.resultCancel[Button]  [Label].root {
            color: var(--dialogResultCancelContrastColor);
        }

[Button] [Label].root {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: inline-flex;
}

[Button] [PopUp].root {
    cursor: default;
    user-select: none;
}
/* _content/Diomex.Framework.UI.Blazor/Common/DropDownList.razor.rz.scp.css */
/* Stil für das Container-Element */
.custom-dropdown[DropDownList] {
    position: relative;
    /*    width: 200px;
    font-family: Arial, sans-serif;
*/
}

.selected[DropDownList] {
    padding: 6px 12px; /* Standardabstände eines Dropdowns */
    border: 1px solid #ccc; /* Typischer dünner Rahmen */
    border-radius: 4px; /* Leicht abgerundete Ecken */
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); /* Leichter Innenschatten */
    color: #333; /* Dunkle Schrift */
}

    /* Pfeil nach unten simulieren */
    .selected[DropDownList]::after {
        content: '\02C5'; /* Unicode für ▼ */
        position: absolute;
        right: 5px;
        font-size: 10px;
        color: #666;
    }

/* Dropdown-Liste */
.dropdown-list[DropDownList] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtiler Schatten wie bei nativen Dropdowns */
    max-height: 200px;
    overflow-y: auto;
    z-index: 1001;
    margin-top: 1px; /* Kleiner Abstand zum Auswahlbereich */
}

/* Liste bei Aktivität anzeigen */
.custom-dropdown.active .dropdown-list[DropDownList] {
    display: block;
}

/* Einzelne Optionen */
.option[DropDownList] {
    padding: 6px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333;
}

    /* Hover-Effekt wie bei nativen Dropdowns */
    .option:hover[DropDownList] {
        background-color: #f5f5f5; /* Helles Grau */
    }

    /* Bild-Styling */
    .option img[DropDownList], .selected img[DropDownList] {
        width: 16px; /* Kleinere, standardmäßige Größe */
        height: 16px;
        margin-right: 8px; /* Leichter Abstand zum Text */
        vertical-align: middle;
    }

/* Unsichtbares Overlay */
.overlay[DropDownList] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Unsichtbar, aber klickbar */
    z-index: 1000; /* Unter der Dropdown-Liste */
}
/* _content/Diomex.Framework.UI.Blazor/Common/Label.razor.rz.scp.css */
.root[Label] {
    /*width: 100%;*/
    /*height: 100%;*/
    /*display: inline-flex;*/
    flex-flow: wrap;
    /*justify-content: center;*/
    justify-content: left;
    gap: 0.25rem;
    padding: 0.5rem;
    cursor: default;
    user-select: none;
}

.icon[Label] {
    align-self: center;
}

.root.error:not(.hasCaption) > .icon[Label] {
    color: var(--errorColor);
}

.root.warning:not(.hasCaption) > .icon[Label] {
    color: var(--warningColor);
}

.state[Label] {
    align-self: center;
}

.captionElements[Label] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.25rem;
    align-self: center;
    max-width: 100%
}

    .captionElements:is(.error *)[Label] {
        color: var(--errorColor);
    }

    .captionElements:is(.warning *)[Label] {
        color: var(--warningColor);
    }

.caption[Label] {
    align-self: center;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* _content/Diomex.Framework.UI.Blazor/Common/LastInteractionTracker.razor.rz.scp.css */

.last-interaction-tracker:empty[b-sfzxmm212r] {
    display: none;
}

.last-interaction-tracker[b-sfzxmm212r] {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background-color: #FFF;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 10px;
}

.last-interaction-tracker p[b-sfzxmm212r]{
    margin:0px;
}
/* _content/Diomex.Framework.UI.Blazor/Common/LoadingCircle.razor.rz.scp.css */


.background[LoadingCircle] {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 1000;
}

#loading-circle[LoadingCircle] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

#loading-circle-aspect-ratio[LoadingCircle] {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    aspect-ratio: 1/1;
    z-index: 10000;
    text-align: center;
    transform: translate(50%, 50%);
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

#loader-aspect-ratio[LoadingCircle] {
    display: inline-block;
    vertical-align: top;
    position: relative;
    height:50%;
    min-height:25px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-outer-circle);
    border-bottom-color: var(--color-outer-circle);
    -webkit-animation: spin 2s linear infinite;
    animation: spin-LoadingCircle 2s linear infinite;
}

    #loader-aspect-ratio[LoadingCircle]:before {
        content: "";
        display: inline-block;
        vertical-align: top;
        position: relative;
        width: 40%;
        margin: 30%;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: var(--color-middle-circle);
        border-bottom-color: var(--color-middle-circle);
        -webkit-animation: spin 3s linear infinite;
        animation: spin-LoadingCircle 3s linear infinite;
    }

    #loader-aspect-ratio[LoadingCircle]:after {
        content: "";
        /*        display: inline-block;
        position: relative;
        top: 30%;
        width: 40%;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #9B9FA3;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite; */
    }

#loader[LoadingCircle] {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-outer-circle);
    -webkit-animation: spin 2s linear infinite;
    animation: spin-LoadingCircle 2s linear infinite;
}

    #loader[LoadingCircle]:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: var(--color-middle-circle);
        -webkit-animation: spin 3s linear infinite;
        animation: spin-LoadingCircle 3s linear infinite;
    }

    #loader[LoadingCircle]:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: var(--color-inner-circle);
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin-LoadingCircle 1.5s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin-LoadingCircle {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* _content/Diomex.Framework.UI.Blazor/Common/PopUp.razor.rz.scp.css */
.root[PopUp] {
    z-index: 1001;
    --popUpTargetElementSelector: unset;
    --popUpContainerElementSelector: unset;
    --popUpPosition: unset;
    --popUpShowArrow: unset;
    --popUpMargin: 0.75rem;
}

.content[PopUp] {
    padding: unset;
    display: grid;
    grid-template-rows: max-content 1fr max-content
}

.header[PopUp] {
}

.body[PopUp] {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 1rem;
}

.no-overflow[PopUp] {
    overflow-y: unset !important;
    overflow-x: unset !important;
}

.scroll-div[PopUp] {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scrollbar-width: thin;
    scrollbar-color: var(--color2) #00000000;
}

.footer[PopUp] {
    display: grid;
    place-content: center;
}

    .footer:is(.isFlyOut *)[PopUp] {
        place-content: end;
    }

.footerResultButtons[PopUp] {
    display: grid;
    grid-column-gap: 1rem;
}

    .footerResultButtons:is(.buttonsOk *)[PopUp] {
        grid-template-columns: 1fr;
    }

    .footerResultButtons:is(.buttonsOkCancel *)[PopUp] {
        grid-template-columns: 1fr 1fr;
    }

    .footerResultButtons:is(.buttonsYesNo *)[PopUp] {
        grid-template-columns: 1fr 1fr;
    }

    .footerResultButtons:is(.buttonsYesNoCancel *)[PopUp] {
        grid-template-columns: 1fr 1fr 1fr;
    }

.background[PopUp] {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 1001;
}
/* _content/Diomex.Framework.UI.Blazor/Common/PushAlert.razor.rz.scp.css */
.alert[PushAlert] {
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
    position: absolute;
    width: 100%;
    bottom: 0px;
    left:0px;
    border-radius: 5px;
    z-index: 99999;
}

.message-hosting-area[PushAlert] {
    display: contents;
    height: fit-content;
    pointer-events: none;
}

.success[PushAlert] {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.error[PushAlert] {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.warning[PushAlert] {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

.information[PushAlert] {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.close-btn[PushAlert] {
    position: absolute;
    top: 24px;
    right: 16px;
    font-size: 20px;
    cursor: pointer;
}

.fade-out[PushAlert] {
    animation: fade-PushAlert;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.fade-out-medium[PushAlert] {
    animation: fade-PushAlert;
    animation-duration: 1s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
}

.fade-out-long[PushAlert] {
    animation: fade-PushAlert;
    animation-duration: 1s;
    animation-delay: 5s;
    animation-fill-mode: forwards;
}

@keyframes fade-PushAlert {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}
/* _content/Diomex.Framework.UI.Blazor/ItemList.razor.rz.scp.css */

.diomex-item-list-container[ItemList] {
    box-sizing: border-box;
    margin-right: 15px;
}

.diomex-item-list[ItemList] {
    margin: 10px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
}

    .diomex-item-list:is(.mobile *)[ItemList] {
        flex-direction: column;
        align-items: center;
    }

    .diomex-item-list:is(.desktop *)[ItemList] {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .diomex-item-list > .diomex-item-list-item-container[ItemList] {
        float: left;
        margin: 10px;
        width: 100%;
        box-sizing: border-box;
        background-color: transparent;
    }


    .diomex-item-list[data-view-mode="LIST"] > .diomex-item-list-item-container[ItemList] {
        max-width: 100% !important;
    }

    .diomex-item-list > .diomex-item-list-item-container > .diomex-item-list-item[ItemList] {
        box-sizing: border-box;
        position: relative;
    }

[searchconfigurationsessionpopup] > .diomex-item-list-container > .diomex-item-list > .diomex-item-list-item-container > .diomex-item-list-item:is(.desktop *)[ItemList] {
    min-width: 380px;
}


.diomex-item-list:has(.configuration-error-viewer-wrapper)[ItemList] {
    flex-direction: column !important;
}
/* _content/Diomex.Framework.UI.Blazor/NewSwiper.razor.rz.scp.css */

.swiper[NewSwiper] {
    width:100%;
    height:100%;
}

/* Swiper Scrollbar fürs Erste allgemein disabled */
.swiper-scrollbar[NewSwiper] {
    display: none;
}

/* Pagination nicht anzeigen wenn es nur eine Slide gibt */
.swiper-pagination-host:has(.swiper-pagination > span:only-child)[NewSwiper] {
    display: none !important;
}

/* Next- und Prev-Buttons an Pagination gehaftet */
.swiper-button-prev[newswiper][NewSwiper],
.swiper-button-next[newswiper][NewSwiper] {
    position: static;
    margin: 0;
    flex-shrink: 0;
    background: white;
    height: 28px;
    width: 25px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Kantenrundung Next/Prev Buttons */
.swiper-button-prev[newswiper][NewSwiper] {
    border-radius: 15px 0px 0px 15px;
}
.swiper-button-next[newswiper][NewSwiper] {
    border-radius: 0px 15px 15px 0px;
}

/* Disabled Opacity bei Next/Prev Buttons verhindern (schlägt sonst an wenn das Ende der Navigation erreicht ist) */
.swiper-button-next.swiper-button-disabled[newswiper][NewSwiper],
.swiper-button-prev.swiper-button-disabled[newswiper][NewSwiper] {
    opacity: 1;
}
    .swiper-button-next.swiper-button-disabled[newswiper][NewSwiper]::after,
    .swiper-button-prev.swiper-button-disabled[newswiper][NewSwiper]::after {
        opacity: 1;
    }

.swiper-button-next[newswiper][NewSwiper]::after,
.swiper-button-prev[newswiper][NewSwiper]::after {
    font-size: 12px;
    font-weight: 600;
}

/* Visual Swiper */

.visual-swiper-top.swiper[newswiper] > .swiper-pagination-host[NewSwiper] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0px 0px 50%;
    width: fit-content;
    z-index: 9999;
    transform: translateX(-50%) translateY(-15px);
}

    .visual-swiper-top.swiper[newswiper] > .swiper-pagination-host:is(.desktop *)[NewSwiper] {
        position: absolute;
    }

    .visual-swiper-top.swiper[newswiper] > .swiper-pagination-host:is(.mobile *)[NewSwiper] {
        position: fixed;
    }

    .visual-swiper-top.swiper[newswiper] > .swiper-pagination-host > .swiper-pagination-bullets.swiper-pagination-horizontal[NewSwiper] {
        white-space: nowrap;
        background: #FFF;
        transform: none !important;
        padding: 10px;
        flex-grow: 1;
        text-align: center;
        border-radius: 0px;
        position: static;
    }

        .visual-swiper-top.swiper[newswiper] > .swiper-pagination-host > .swiper-pagination-bullets.swiper-pagination-horizontal:is(.mobile *)[NewSwiper] {
            line-height: 0.3;
        }
        .visual-swiper-top.swiper[newswiper] > .swiper-pagination-host > .swiper-pagination-bullets.swiper-pagination-horizontal:is(.desktop *)[NewSwiper] {
            line-height: 0.3;
        }

    .visual-swiper-top.swiper[newswiper] > .swiper-pagination-host > .swiper-button-prev[NewSwiper] {
        transform: translateX(1px) translateY(0px);
    }

    .visual-swiper-top.swiper[newswiper] > .swiper-pagination-host > .swiper-button-next[NewSwiper] {
        transform: translateX(-1px) translateY(0px);
    }

.visual-swiper-bottom[newswiper][NewSwiper] {
    overflow: visible;
}

.visual-swiper-bottom.swiper[newswiper] .swiper-pagination-host[NewSwiper] {
    display: none;
}

.visual-swiper-top > .swiper-wrapper[newswiper]:is(.desktop *)[NewSwiper] {
    height: calc(100% - 18px);
}

.visual-swiper-top > .swiper-pagination-host[newswiper]:is(.mobile *)[NewSwiper] {
    box-shadow: 0px 0px 10px 0px #D6D6D6;
    border-radius: 15px;
}

.visual-area[OptionSelectionView]:is(.desktop *)[NewSwiper] {
    padding-bottom: 0px;
}

.visual-area[OptionSelectionView]:is(.mobile *)[NewSwiper] {
    padding-bottom: 12px;
}

/* Visual Swiper */


/* Detail Swiper */

.detail-swiper-top:is(.mobile *)[NewSwiper] {
    height: 70%;
}

.detail-swiper-bottom:is(.mobile *)[NewSwiper] {
    height: 60%;
}

.detail-swiper-bottom.swiper[newswiper][NewSwiper] {
    height: calc(100% - 250px);
    width: 100%;
    overflow: visible;
}

.detail-swiper-top.swiper[newswiper][NewSwiper] {
    height: 190px;
    margin-top: 14px;
    margin-left: 8px;
    margin-right: 8px;
}

.detail-swiper-bottom.swiper[newswiper] > .swiper-pagination-host[NewSwiper] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0px 0px 50%;
    width: fit-content;
    z-index: 9999;
    position: absolute;
}

    .detail-swiper-bottom.swiper[newswiper] > .swiper-pagination-host:is(.mobile *)[NewSwiper] {
        transform: translateX(-50%) translateY(11px);
    }

    .detail-swiper-bottom.swiper[newswiper] > .swiper-pagination-host:is(.desktop *)[NewSwiper] {
        transform: translateX(-50%) translateY(8px);
    }

.detail-swiper-top.swiper[newswiper] .swiper-pagination-host[NewSwiper] {
    display: none;
}

.detail-swiper-bottom.swiper[newswiper] > .swiper-pagination-host > .swiper-pagination-bullets.swiper-pagination-horizontal[NewSwiper] {
    white-space: nowrap;
    background: #FFF;
    transform: none !important;
    padding: 10px;
    flex-grow: 1;
    text-align: center;
    border-radius: 0px;
    position: static;
}

    .detail-swiper-bottom.swiper[newswiper] > .swiper-pagination-host > .swiper-pagination-bullets.swiper-pagination-horizontal:is(.mobile *)[NewSwiper] {
        line-height: 0.4;
    }

    .detail-swiper-bottom.swiper[newswiper] > .swiper-pagination-host > .swiper-pagination-bullets.swiper-pagination-horizontal:is(.desktop *)[NewSwiper] {
        line-height: 0.3;
    }

.detail-swiper-bottom > .swiper-pagination-host[newswiper]:is(.mobile *)[NewSwiper] {
    box-shadow: 0px 0px 10px 0px #D6D6D6;
    border-radius: 15px;
}

/* Detail Swiper */
/* _content/Diomex.Framework.UI.Blazor/OptionSelectorGridView.razor.rz.scp.css */
.custom-grid-container[b-cfsae83yf5] {
    display: flex;
    margin: 6px;
    flex-direction: column;
    width: 100%;
}

.custom-grid-row[b-cfsae83yf5] {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.custom-grid-item[b-cfsae83yf5] {
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
    margin-bottom: 4px;
    padding: 6px 0px;
}

    .custom-grid-item:not(:last-child)[b-cfsae83yf5] {
        border-right: 1px solid #f2f2f2;
    }

.key[b-cfsae83yf5] {
    text-align: center;
}

.value[b-cfsae83yf5] {
    font-weight: bold;
    text-align: center;
    color: #666;
}

.mobile-area:is(.desktop *)[b-cfsae83yf5] {
    display: none;
}

.desktop-area:is(.mobile *)[b-cfsae83yf5] {
    display: none;
}

.line[b-cfsae83yf5] {
    width: 100%;
    height: 1px;
    background-color: #f2f2f2;
    margin-bottom: 4px;
}

.large-font[b-cfsae83yf5] {
    font-size: 25px;
}
/* _content/Diomex.Framework.UI.Blazor/Swiper.razor.rz.scp.css */


.swiper[Swiper] {
    width: 100%;
    height: 100%;
    margin-top: 10px;
    padding: 20px;
}

.swiper-slide[Swiper] {
    width: 100%;
    height:80%;
}

.swiper-button-next[Swiper] {
    right: 7%;
}

.swiper-button-prev[Swiper] {
    left: 7%;
}

    .swiper-button-next[Swiper]:after, .swiper-button-prev[Swiper]:after {
        font-size: medium;
        font-weight: 900;
        color: black;
    }

.swiper-pagination-bullet-active[Swiper] {
    background: #CB7A25;
}

.navigation[Swiper] {
    display: block;
    width: 18rem;
    height: 2rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    translate: -50%;
    z-index: 9999;
}

.swiper-pagination-bullets.swiper-pagination-horizontal[Swiper] {
    padding-left: 20%;
    padding-right: 20%;
    bottom: 4px;
}


@media(max-width:575px) {

    .swiper[Swiper] {
        width: 70vw;
        margin-top: 50px;
    }
}
