/* _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/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] {
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color2) #00000000;
}

.no-overflow[PopUp] {
    overflow-y: unset !important;
    overflow-x: unset !important;
}

.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 > .diomex-item-list-item-container:is(.mobile *)[ItemList] {
    max-width: 100%;
}

.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/Swiper.razor.rz.scp.css */


.swiper[b-00ezxfgsa2] {
    width: 100%;
    height: 100%;
    margin-top: 10px;
    padding: 20px;
}

.swiper-slide[b-00ezxfgsa2] {
    width: 100%;
    height:80%;
}

.swiper-button-next[b-00ezxfgsa2] {
    right: 7%;
}

.swiper-button-prev[b-00ezxfgsa2] {
    left: 7%;
}

    .swiper-button-next[b-00ezxfgsa2]:after, .swiper-button-prev[b-00ezxfgsa2]:after {
        font-size: medium;
        font-weight: 900;
        color: black;
    }

.swiper-pagination-bullet-active[b-00ezxfgsa2] {
    background: #CB7A25;
}

.navigation[b-00ezxfgsa2] {
    display: block;
    width: 18rem;
    height: 2rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    translate: -50%;
    z-index: 9999;
}

.swiper-pagination-bullets.swiper-pagination-horizontal[b-00ezxfgsa2] {
    padding-left: 20%;
    padding-right: 20%;
    bottom: 4px;
}


@media(max-width:575px) {

    .swiper[b-00ezxfgsa2] {
        width: 70vw;
        margin-top: 50px;
    }
}
/* _content/Diomex.Framework.UI.Blazor/SwiperSplitterMainAndDetails.razor.rz.scp.css */
.single-select-option-value-container[SingleSelectOptionValue][b-ahcdytt7bm] {
    /*height: 85%;*/
}

.swiper-horizontal[b-ahcdytt7bm] {
    margin: 0px;
    width: 100%;
}

.swiper-wrapper[b-ahcdytt7bm] {
    /*    transform:none!important;*/
}

.swiper-card-text[b-ahcdytt7bm] {
    margin: 30px;
    padding: 20px;
    border: 1px solid lightgray;
}

.swiper-slide > .composed-image-container[b-ahcdytt7bm] {
    width: 50%;
    height: 50%;
    position: relative;
    transform: translate(50%);
}

.gallery-thumbs .swiper-slide[b-ahcdytt7bm][b-ahcdytt7bm] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 150px;
}

.thumbnail-selected[b-ahcdytt7bm] {
    text-align: center;
    position: absolute;
    top: 0px;
    background-color: khaki;
    border: 1px solid gray;
    font-size: x-small;
    width: 100%;
}

.thumbnail-button[b-ahcdytt7bm] {
    background-color: khaki;
    width: 100%;
    max-height: 30px;
}

.swiper.gallery-thumbs .composed-image-grid-image-style[b-ahcdytt7bm] {
    width: 80px;
    object-fit: fill;
}

.swiper.gallery-top img[b-ahcdytt7bm] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10%;
}


.gallery-top[b-ahcdytt7bm] {
    height: 70%;
    width: 100%;
}

.swiper-container[b-ahcdytt7bm] {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide[b-ahcdytt7bm] {
    background-size: cover;
    background-position: center;
}

.gallery-top[b-ahcdytt7bm] {
    height: 80%;
    width: 100%;
}

.gallery-thumbs[b-ahcdytt7bm] {
    height: 35%;
    box-sizing: content-box;
    padding: 10px 0;
}

    .gallery-thumbs .swiper-slide[b-ahcdytt7bm] {
        height: 100%;
        opacity: 0.4;
    }

    .gallery-thumbs .swiper-slide-thumb-active[b-ahcdytt7bm] {
        opacity: 1;
    }



.thumbnail-arrow[b-ahcdytt7bm] {
    top: 50%;
    color: black;
    width: 25px;
    height: 25px;
    background-color: khaki;
}

    .thumbnail-arrow.prev[b-ahcdytt7bm]{
/*        display:none;*/
    }

    .thumbnail-arrow[b-ahcdytt7bm]:after {
        font-size: 12px;
        font-weight: bolder;
    }


.gallery-arrow[b-ahcdytt7bm] {
    background-color: khaki;
}


.swiper-button-next[b-ahcdytt7bm] {
    right: 0px;
}

.swiper-button-prev[b-ahcdytt7bm] {
    left: 0px;
}

    .swiper-button-next[b-ahcdytt7bm]:after,
    .swiper-button-prev[b-ahcdytt7bm]:after {
        font-size: x-small;
        font-weight: 900;
        color: black;
    }

.swiper-pagination-bullet-active[b-ahcdytt7bm] {
    background: #CB7A25;
}

.navigation[b-ahcdytt7bm] {
    display: block;
    width: 10rem;
    height: 2rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    translate: -50%;
    z-index: 9999;
}
