


/********** Allgemeine System Farben und andere Variablen **********/
:root {
    --mwFarbeText: #1D1D1F;
    --mwFarbeWeiss: #FFFFFF;
    --mwFarbeSchwarz: #000000;
    --mwFarbeTextGrau: #6E6E73;

    --mwFarbeHintergrundWeiss: #FFFFFF;
    --mwFarbeHintergrund: #F5F5F7;
    --mwFarbeHintergrundLightTransparent: #F5F5F7BB;

    --mwFarbeOrange: #FFA200;
    
    
    --mwFarbeOrangeHeller: #FDF6DA;
    --mwFarbeBlau: #63C4FC;
    --mwFarbeGruen: #12AE4B;
    --mwFarbeRot: #BC1010;
    --mwFarbeHover: #E4E4E4;
    --mwFarbeLinie: #D2D2D2;
    --mwFarbeOverlay: #00000099;
    --mwBorderRadiusSmall: 6px;
    --mwBorderRadius: 10px;
    --mwBorderRadiusBig: 25px;
}
/*******************************/



/************ Allgemein ************/
body {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
    color: var(--mwFarbeText);
    background-color: var(--mwFarbeHintergrundWeiss);
}
body.siteContentSelfBackgroundGrey {
    background-color: var(--mwFarbeHintergrund);
}

input {
    font-size: 14px;
}

.boldFontInterDisplay {
    font-family: InterDisplay, sans-serif;
    font-weight: 600;
}

a, a:active, a:focus {
    color: var(--mwFarbeText);
    text-decoration: none;
    outline: none !important;
}
a:hover {
    color: var(--mwFarbeText);
    text-decoration: underline;
    outline: none !important;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.2px;
}


.container-no-padding-left {
    padding-left: 0 !important;
}


.strikediagLine {
    background: linear-gradient(to left top, transparent 47.75%, currentColor 49.5%, currentColor 50.5%, transparent 52.25%);
    font-size: 15px;
}
.artikelListElementPreisMinusProzente {
    color: var(--mwFarbeSchwarz);
    font-size: 14px;
    background-color: var(--mwFarbeOrange);
    padding: 1px 10px;
    
    border-radius: var(--mwBorderRadiusBig);
    -moz-border-radius: var(--mwBorderRadiusBig);
    -webkit-border-radius: var(--mwBorderRadiusBig);
}
.artikelListElementPreisMinusProzente i {
    margin-right: 4px;
}
.artikelListElementPreisWarenkorb {
    display: inline-block;
}
.artikelListElementPreisMinusProzenteWarenkorb {
    display: inline-block;
    color: #FFF;
    background-color: #f22613;
    padding: 2px 10px;
    margin: 4px 0 4px 15px;
    font-size: 14px;

    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
.artikelListElementPreisMinusProzenteDetail {
    display: inline-block;
    color: #FFF;
    background-color: #f22613;
    padding: 2px 10px;
    margin: 4px 0 4px 26px;
    font-size: 18px;

    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
.artikelListElementPreisRabatSelf {
    font-weight: bold;
    font-size: 17px;
}
.artikelListElementPreisRabatSelfDetail {
    margin-top: 10px;
    font-size: 22px;
}

.sysContentForDialogPages {
    padding-bottom: 90px;
}

input:read-only {
    background-color: #EEE;
    color: #AAA;
}
input:read-only:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}




/************ Own Loader NEU ************/

.loaderSelfPoints, .loaderSelfPoints:before, .loaderSelfPoints:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    animation-fill-mode: both;
    animation: bblFadInOut 1.8s infinite ease-in-out;
}
.loaderSelfPoints {
    display: inline-block;
    color: var(--mwFarbeOrange);
    font-size: 7px;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-delay: -0.16s;
}
.loaderSelfPoints:before,
.loaderSelfPoints:after {
    content: '';
    position: absolute;
    top: 0;
}
.loaderSelfPoints:before {
    left: -3.5em;
    animation-delay: -0.32s;
}
.loaderSelfPoints:after {
    left: 3.5em;
}

@keyframes bblFadInOut {
    0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em }
    40% { box-shadow: 0 2.5em 0 0 }
}





/************ Header NEU ************/

.siteHeaderOwn {
    position: relative;
    background-color: var(--mwFarbeWeiss);
}
.siteHeaderOwnTop {
    height: 80px;
}
.siteHeaderOwn .siteHeaderOwnLogo {
    padding: 0 0 0 60px;
    z-index: 99;
}
.siteHeaderOwn .siteHeaderOwnLogo img {
    height: 52px;
    margin-top: 13px;
}

.siteHeaderOwn .siteHeaderOwnMenu {
    text-align: right;
    padding: 23px 50px 0 0;
}
.siteHeaderOwn .siteHeaderOwnMenu .siteHeaderOwnMenuSearchBar,
.siteHeaderOwn .siteHeaderOwnMenuBar .siteHeaderOwnMenuSearchBarMobile {
    display: inline-block;
    position: relative;
    margin-right: 30px;
}
.siteHeaderOwn .siteHeaderOwnMenuBar .siteHeaderOwnMenuSearchBarMobile {
    display: none;
}
.siteHeaderOwn .siteHeaderOwnMenu .siteHeaderOwnMenuSearchBar img {
    position: absolute;
    left: 18px;
    top: 8px;
    height: 20px;
}
.siteHeaderOwn .siteHeaderOwnMenuBar .siteHeaderOwnMenuSearchBarMobile img {
    position: absolute;
    left: 18px;
    top: 8px;
    height: 20px;
}
.siteHeaderOwn .siteHeaderOwnMenu .siteHeaderOwnMenuSearchBar input,
.siteHeaderOwn .siteHeaderOwnMenuBar .siteHeaderOwnMenuSearchBarMobile input {
    background-color: var(--mwFarbeHintergrund);
    border: 1px solid var(--mwFarbeHintergrund);
    padding: 6px 10px 6px 56px;
    width: 280px;
    outline: none !important;
    
    border-radius: var(--mwBorderRadiusBig);
    -moz-border-radius: var(--mwBorderRadiusBig);
    -webkit-border-radius: var(--mwBorderRadiusBig);

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.siteHeaderOwn .siteHeaderOwnMenuBar .siteHeaderOwnMenuSearchBarMobile input {
    background-color: var(--mwFarbeWeiss);
    border: 1px solid var(--mwFarbeWeiss);
    width: 220px;
}
.siteHeaderOwn .siteHeaderOwnMenu .siteHeaderOwnMenuSearchBar input:focus {
    width: 400px;
}

.siteHeaderOwn .siteHeaderOwnMenu .siteHeaderOwnMenuObject {
    position: relative;
    display: inline-block;
    margin-right: 20px;
    cursor: pointer;
}

.siteHeaderOwn .siteHeaderOwnMenu .siteHeaderOwnMenuObjectShopCart.siteHeaderOwnMenuObjectShopCartFixedPos {
    position: fixed;
    top: 20px;
    right: 10px;
    
    z-index: 999;
}

.siteHeaderOwn .siteHeaderOwnMenu .dropdown-menu {
    min-width: 320px;
    height: 400px;
    overflow-y: auto;
}

.siteHeaderOwn .siteHeaderOwnMenu > .dropdown-center > span.dropdown-toggle::after,
.siteHeaderOwn .siteHeaderOwnMenu > .dropdown > span.dropdown-toggle::after,
.addThisArtikelToWarenkorbDropDownSet div.dropdown-toggle::after {
    content: none !important;
}
.addThisArtikelToWarenkorbDropDownSet .dropdown-menu {
    background-color: var(--mwFarbeHintergrund);
}

.headerWarenkorbNumCount {
    position: absolute;
    top: -10px;
    right: -14px;
    color: var(--mwFarbeWeiss);
    background-color: var(--mwFarbeRot);
    text-align: center;
    line-height: 22px;
    font-size: 11px;

    width: 22px;
    height: 22px;

    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}


.sysPixHeaderBtnUserWindowInhalt {
    padding: 20px;
}
.sysPixHeaderBtnUserWindowInhalt .sysPixHeaderBtnUserWindowInhaltCompanyName {
    font-size: 20px;
    font-weight: bold;
}
.sysPixHeaderBtnUserWindowInhalt .sysPixHeaderBtnUserWindowInhaltUserName {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}
.sysPixHeaderBtnUserWindowInhalt .sysPixHeaderBtnUserWindowInhaltLinks a,
.sysPixHeaderBtnUserWindowInhalt .sysPixHeaderBtnUserWindowInhaltLinks span {
    cursor: pointer;
}
.sysPixHeaderBtnUserWindowInhalt .sysPixHeaderBtnUserWindowInhaltLinks a:hover,
.sysPixHeaderBtnUserWindowInhalt .sysPixHeaderBtnUserWindowInhaltLinks span:hover {
    text-decoration: underline !important;
}

.siteHeaderOwnMenuBarBurgerBtn {
    display: none;
}

.siteHeaderOwnMenuBar {
    position: relative;
}


.siteHeaderOwnMenuBar {
    background-color: var(--mwFarbeHintergrund);
    padding: 12px 0 12px 60px;
    min-height: 46px;
}
.siteHeaderOwnMenuBar .siteHeaderOwnMenuBarElement {
    display: inline-block;
    margin-right: 20px;
    font-size: 15px;
    color: var(--mwFarbeTextGrau);
    text-decoration: none;
    cursor: pointer;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.siteHeaderOwnMenuBar .siteHeaderOwnMenuBarElement.siteHeaderOwnMenuBarElementSaleMenu {
    background-color: var(--mwFarbeOrange);
    color: var(--mwFarbeSchwarz);
    padding: 0 16px;
    margin-left: 6px;
    font-size: 14px;
    
    border-radius: var(--mwBorderRadiusBig);
    -moz-border-radius: var(--mwBorderRadiusBig);
    -webkit-border-radius: var(--mwBorderRadiusBig);
}
.siteHeaderOwnMenuBar .siteHeaderOwnMenuBarElement:hover,
.siteHeaderOwnMenuBar .siteHeaderOwnMenuBarElement.IsActiveBtn {
    color: var(--mwFarbeSchwarz);
}
.siteHeaderOwnMenuBar .siteHeaderOwnMenuBarElement.siteHeaderOwnMenuBarElementSaleMenu:hover {
    opacity: .8;
}

@media (min-width: 992px) {
    .siteHeaderOwnMenuBarElementsHolder.collapse:not(.show) {
        display: inline-block !important;
    }
}



@media (max-width: 991px) {
    .siteHeaderOwnMenuBarBurgerBtn {
        position: absolute;
        display: block;
        background: #FFF;
        font-size: 26px;
        line-height: 25px;
        padding: 4px 6px;
        top: 6px;
        left: 20px;
    }
    .siteHeaderOwnMenuBarElementsHolder {
        position: absolute;
        left: 0;
        right: 0;
        top: 46px;
        padding: 20px 62px;
        background-color: var(--mwFarbeHintergrund);
        
        z-index: 999;
    }
    .siteHeaderOwnMenuBar .siteHeaderOwnMenuBarElement {
        display: block;
        width: max-content;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .siteHeaderOwnMenuBar .siteHeaderOwnMenuBarElement.siteHeaderOwnMenuBarElementLine {
        display: none;
    }

    .siteHeaderOwn .siteHeaderOwnLogo {
        padding: 0 0 0 20px;
    }
    .siteHeaderOwn .siteHeaderOwnMenu {
        padding: 23px 12px 0 0;
    }
}


@media (max-width: 650px) {
    .siteHeaderOwnMenuBar {
        text-align: right;
    }
    .siteHeaderOwnMenuBar {
        padding: 5px 0 5px 80px;
    }
    .siteHeaderOwn .siteHeaderOwnLogo img {
        height: 42px;
    }
    .siteHeaderOwnTop {
        height: 66px;
    }
    .siteHeaderOwn .siteHeaderOwnMenu {
        padding: 16px 12px 0 0;
    }
    .siteHeaderOwn .siteHeaderOwnMenu .siteHeaderOwnMenuSearchBar {
        display: none;
    }
    .siteHeaderOwn .siteHeaderOwnMenuBar .siteHeaderOwnMenuSearchBarMobile {
        display: inline-block;
        margin-right: 10px;
    }
}



.artikelListElement .swiper-button-next {
    opacity: 0;
    right: -5px;
}
.artikelListElement .swiper-button-prev {
    opacity: 0;
    left: -5px;
}
.artikelListElement:hover .swiper-button-next,
.artikelListElement:hover .swiper-button-prev {
    opacity: 1;
}



/************ Header Slider Menü NEU ************/
.siteHeaderOwnMenuSlider {
    position: relative;
    padding: 18px 38px 0 38px;
    /*background-color: var(--mwFarbeHintergrund);*/
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
    color: var(--mwFarbeOrange);
}
.siteHeaderOwnMenuSlider .swiper-button-next, .siteHeaderOwnMenuSlider .swiper-button-prev {
    margin-top: -32px;
}
.siteHeaderOwnMenuSlider .swiper-slide {
    width: 136px !important;
    margin-left: 20px;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0 !important;
}
.siteHeaderOwnMenuSlider .siteHeaderOwnMenuSliderElement {
    display: inline-block;
    width: auto;
    min-width: 130px;
    height: 136px;
    margin-bottom: 10px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}
.siteHeaderOwnMenuSlider .siteHeaderOwnMenuSliderElement .siteHeaderOwnMenuSliderElementImageHolder {
    height: 90px;
    align-content: center;
}
.siteHeaderOwnMenuSlider .siteHeaderOwnMenuSliderElement .siteHeaderOwnMenuSliderElementImageHolderNoImg img {
    width: 90px !important;
}
.siteHeaderOwnMenuSlider .swiper-slide.swiper-slideBackArrow {
    width: 50px !important;
}
.siteHeaderOwnMenuSlider .swiper-slide.swiper-slideBackCategorie {
    margin-left: 0;
}
.siteHeaderOwnMenuSliderElementBackCategorie {
    border-right: 2px solid var(--mwFarbeTextGrau);
}
.siteHeaderOwnMenuSlider .siteHeaderOwnMenuSliderElement.siteHeaderOwnMenuSliderElementBackArrow {
    align-content: center;
    width: 50px;
    min-width: auto;
}
.siteHeaderOwnMenuSlider .siteHeaderOwnMenuSliderElement.siteHeaderOwnMenuSliderElementBackArrow i {
    font-size: 40px;
}
.siteHeaderOwnMenuSlider .siteHeaderOwnMenuSliderElement img {
    width: auto;
    max-height: 90px;
    max-width: 100%;
}
.siteHeaderOwnMenuSlider .siteHeaderOwnMenuSliderElement .siteHeaderOwnMenuSliderElementText {
    font-size: 14px;
}





/************ Content ************/
#siteContentSelf {
    margin-top: 20px;
}





/************ Footer ************/
#siteFooterSelf {
    background-color: #f5f5f7;
    color: #727378;
    text-align: center;
    font-size: 16px;
    padding:90px 0 40px 0;
    margin-top: 10px;
}
#siteFooterSelf .siteFooterSelfLogo {
    
}
#siteFooterSelf .siteFooterSelfLogo img {
    width: 49px;
    display: inline-block;
    margin-top: -6px;
    margin-right: 10px;
}
#siteFooterSelf .footerMenuObject {
    display: inline-block;
    margin-left:30px;
    cursor: pointer;
    color: #727378;
}

@media (max-width: 1000px) {
    #siteFooterSelf {
        padding:50px 0 40px 0;
    }
    .siteFooterSelfLinkHolders {
        display: block;
        margin-top: 24px;
    }
}

@media (max-width: 590px) {
    #siteFooterSelf .footerMenuObject {
        display: block;
        width: max-content;
        margin: 10px auto;
    }
    .siteFooterSelfBusinessInfo {
        display: block;
        margin-top: 14px;
    }
}





.startInfoBannerElement {
    width: 100%;
    background-image: url('../img/abverkauf/saleBannerBack.svg');
    background-size: cover;
    background-position: center center;
    margin-top: -20px;
    text-align: center;
    padding: 130px 0;
}
.startInfoBannerElement .startInfoBannerElementImg {

}
.startInfoBannerElement .startInfoBannerElementTextBig {
    font-size: 44px;
    margin-top: 15px;
}
.startInfoBannerElement .startInfoBannerElementText {
    font-size: 24px;
    margin-top: 15px;
}
.startInfoBannerElement .startInfoBannerElementTextButton {

}
.startInfoBannerElement .startInfoBannerElementTextButton > a {
    background-color: var(--mwFarbeBlau);
    border: 1px solid var(--mwFarbeBlau);
    padding: 8px 40px;
}





/************ Element Startseite NEU ************/

.startInfoElementOuter {
    margin-top: 80px;
}
.startInfoElementOuter .startInfoElementInner {

}
.startInfoElementOuter .startInfoElementInner .startInfoElementHeadline {
    max-width: 700px;
    font-size: 44px;
}
.startInfoElementOuter .startInfoElementInner .startInfoElementHeadline2 {
    margin-top: 30px;
    max-width: 700px;
    font-size: 20px;
    line-height: 25px;
}




/************ Element Info Boxen mit Icon NEU ************/

.elementInfoBoxenOuter {
    margin-top: 80px;
}
.elementInfoBoxenOuter .elementInfoBoxenInner {

}

.elementInfoBoxen {
    background-color: var(--mwFarbeHintergrund);
    padding: 26px;

    border-radius: var(--mwBorderRadius);
    -moz-border-radius: var(--mwBorderRadius);
    -webkit-border-radius: var(--mwBorderRadius);
}
.elementInfoBoxen .elementInfoBoxenIcon {
    font-size: 26px;
}
.elementInfoBoxen .elementInfoBoxenHeadline {
    font-size: 20px;
    margin-top: 6px;
    font-weight: 600;
}
.elementInfoBoxen .elementInfoBoxenText {
    margin-top: 6px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .elementInfoBoxen {
        margin-bottom: 30px;
    }
}





/************ Shop - Allgemein ************/
.artikelSearchInShop {
    position: relative;
    margin: 50px auto 0 auto;
    text-align: center;
}
.artikelSearchInShop .artikelSearchInShopIcon {
    position: absolute;
    top: 4px;
    left: 21px;
    font-size: 20px;
}
.artikelSearchInShop .artikelSearchInShopIconClearBox {
    position: absolute;
    top: 5px;
    right: 21px;
    font-size: 20px;
    cursor: pointer;
}
.artikelSearchInShop input {
    width: 100%;
    padding: 8px 10px 8px 42px;
    border: 1px solid #CCC;

    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}
.artikelSearchInShop input:focus {
    /*border: 2px solid #F5C518;
    outline: #F5C518 solid medium;*/
    outline: none;
}






/************ Shop - Artikel Listen Element NEU ************/
.bestModulKundenBestellungenListElementUe {
    font-size: 20px;
    margin-top: 30px;
}

.artikelListUeberschrift2 {
    margin-left: 12px;
    margin-top: 20px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}

.siteShopProdukteListOuter {
    margin: 26px auto 0 auto;
}

.artikelListElement {
    display: block;
    position: relative;
    height: 430px;
    margin: 20px 1%;
    background-color: var(--mwFarbeHintergrundWeiss);
    padding:10px 20px;
    text-decoration: none !important;

    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.artikelListElement:hover {
    box-shadow: 0 0 12px #CCCCCC;
    -moz-box-shadow: 0 0 12px #CCCCCC;
    -webkit-box-shadow: 0 0 12px #CCCCCC;
}
.artikelListElementImageNoImg {
    display: inline-block;
    width: 150px;
    height: 190px;
    background-image: url('../img/Multiwork-Logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.artikelListElement .artikelListElementImage {
    text-align: center;
}
.artikelListElement .artikelListElementImage img {
    max-width: 90%;
    max-height: 198px;
}
.mwElementImageCarousel {
    position: relative;
}
.mwElementImageCarouselItem {
    height: 198px;
    /*display: flex;
    align-items: center;*/
    align-content: center;
}
.artikelListElement .artikelListElementNummer {
    color: #FFFFFF;
    background-color: var(--mwFarbeSchwarz);
    display: inline-block;
    font-size: 13px;
    padding: 0 10px;
    margin-top: 8px;
    
    border-radius: var(--mwBorderRadiusBig);
    -moz-border-radius: var(--mwBorderRadiusBig);
    -webkit-border-radius: var(--mwBorderRadiusBig);
}
.artikelListElement .artikelListElementName {
    font-family: InterDisplay, sans-serif;
    font-weight: 600;
    height: 70px;
    margin-top: 8px;
    overflow: hidden;
}
.artikelListElement .artikelListElementPreis {
    display: inline-block;
    font-family: InterDisplay, sans-serif;
    font-weight: 600;
    margin-right: 10px;
}
.artikelListElement .artikelListElementPreis.artikelListElementPreisRabatSelf {
    color: var(--mwFarbeOrange);
}
.artikelListElementPreisMinusProzente.artikelListElementPreisAbsoluteTop {
    position: absolute;
    top: 20px;
    left: 20px;
    margin-right: 0;
    background-color: var(--mwFarbeBlau);
    
    /*border-radius: 8px 0 0 0;
    -moz-border-radius: 8px 0 0 0;
    -webkit-border-radius: 8px 0 0 0;*/
    
    z-index: 99;
}

.artikelIsDeletedInfoList {
    position: relative;
    text-align: center;
    color: #C00;
    margin-top: -15px;
}

.addThisArtikelToWarenkorb,
.istAktionsArtikelInSystem,
.istAktionsArtikelInSystemNoLoginUser,
.istAktionsArtikelInSystemOnlyInfoSet {
    display: inline-block;
    position: relative;
    /*bottom: 28px;
    right: 15px;*/
    width: 36px;
    background-color: var(--mwFarbeOrange);
    height: 36px;
    text-align: center;
    color: var(--mwFarbeWeiss);
    margin-top: 20px;
    margin-right: 10px;
    
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.addThisArtikelToWarenkorb > span {
    display: none;
    position: absolute;
    bottom: 3px;
    left: 6px;
    font-size: 18px;
    line-height: 36px;
}
.addThisArtikelToWarenkorb > img {
    height: 50%;
    line-height: 36px;
}
.addThisArtikelToWarenkorb > svg {
    height: 100%;
}
.addThisArtikelToMoreOptions {
    position: absolute;
    bottom: 28px;
    right: 15px;
    background-color: #000000;
    color: #FFFFFF;
    padding: 2px 12px;
    font-size: 15px;

    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.artikelMoreOptionsListViewContainer {
    position: absolute;
    top: 352px;
    right: 15px;
    left: 15px;
    background-color: #FFFFFF;
    color: #FFFFFF;
    padding: 2px 12px;
    font-size: 15px;
    height: 50px;
    overflow: hidden;
    text-align: center;
    z-index: 99;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
.artikelMoreOptionsListViewContainer:hover {
    height: auto;
    box-shadow: 0px 0px 5px #CCCCCC;
    border: 1px solid #CCCCCC;
}

.artikelMoreOptionsListViewContainer > a > span {
    display: inline-block;
    border-bottom: 2px solid transparent;
}

.artikelMoreOptionsListViewContainer > a > span > img {
    height: 45px;
    display: inline-block;
}


.artikelMoreOptionsDetailViewContainer {
    margin: 20px 0;
}

.artikelMoreOptionsDetailViewContainer > a span.artikelMoreOptionsDetailViewContainerSpan {
    display: inline-block;
    border-bottom: 2px solid transparent;
    margin-right: 6px;
}

.artikelMoreOptionsDetailViewContainer > a span.artikelMoreOptionsDetailViewContainerSpan > img {
    width: 60px;
    display: inline-block;
}

.siteShopProdukteListOuterUeZubehoer {
    font-size: 26px;
    font-weight: bold;
}



/*.istAktionsArtikelInSystem,
.istAktionsArtikelInSystemNoLoginUser,
.istAktionsArtikelInSystemOnlyInfoSet {
    width: 24px;
    color: #f22613;
}*/
.istAktionsArtikelInSystemOnlyInfoSet {
    width: 54px;
    left: 20px;
}
.istAktionsArtikelInSystem, .istAktionsArtikelInSystemNoLoginUser {
    cursor: auto;
    background-color: var(--mwFarbeRot);
    width: auto;
    padding: 0 14px;
    
    border-radius: var(--mwBorderRadiusBig);
    -moz-border-radius: var(--mwBorderRadiusBig);
    -webkit-border-radius: var(--mwBorderRadiusBig);
}
.istAktionsArtikelInSystem > span.istAktionsArtikelInSystemPlus,
.istAktionsArtikelInSystemNoLoginUser > span.istAktionsArtikelInSystemPlus {
    position: absolute;
    bottom: 2px;
    left: 7px;
    font-size: 18px;
    line-height: 18px;
}
.istAktionsArtikelInSystem > span.istAktionsArtikelInSystemMinusInfo,
.istAktionsArtikelInSystemNoLoginUser > span.istAktionsArtikelInSystemMinusInfo {
    position: absolute;
    bottom: 30px;
    left: -6px;
    width: 60px;
    font-size: 14px;
}
.istAktionsArtikelInSystem > img,
.istAktionsArtikelInSystemNoLoginUser > img {

}

.istAktionsArtikelInSystemNotActive {
    color: #CCC !important;
    cursor: auto !important;
}
.istAktionsArtikelInSystemNotActive > img {
    opacity: .4 !important;
}


.addThisArtikelToWarenkorbDropDown {
    padding: 6px 20px;
    width: 280px;
}
.addThisArtikelToWarenkorbDropDown > svg {
    margin-right: 6px;
}
.addThisArtikelToWarenkorbDropDown.istAktionsArtikelInSystemNoLoginUser,
.addThisArtikelToWarenkorbDropDown.istAktionsArtikelInSystem {
    background-color: transparent;
    color: var(--mwFarbeRot);
    text-align: left;
    margin-top: 0;
    margin-right: 0;
}
.addThisArtikelToWarenkorbDropDown.istAktionsArtikelInSystem {
    cursor: pointer;
}





/************ Shop - Artikel Detail NEU ************/

.artikelDetailHead {
    margin-top: 80px;
}
.artikelDetailHead .artikelDetailHeadPictures {
    position: relative;
}
.artikelDetailHead .artikelDetailHeadPictures .swiperDetailElements {
    margin-left: 110px;
}
.artikelDetailHead .artikelDetailHeadPictures .artikelDetailHeadPicturesThumbs {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
}
.artikelDetailHead .artikelDetailHeadPictures .artikelDetailHeadPicturesThumbs .mwElementImageCarousel {
    height: 100%;
}
.artikelDetailHead .artikelDetailHeadPictures .artikelDetailHeadPicturesThumbs .swiper-slide {
    height: auto;
}
.artikelDetailHead .artikelDetailHeadPictures img {
    width: 100%;
}

.artikelDetailHeadBackgroundLeftPiktogramme {
    
}
.artikelDetailHeadBackgroundLeftPiktogramme img {
    width:80px !important;
    margin-right: 20px;
    margin-top: 20px;
}

.artikelDetailHead .artikelDetailHeadContent {
    position: relative;
}

.artikelDetailHead .artikelDetailHeadContent .artikelDetailHeadContentNumber {

}
.artikelDetailHead .artikelDetailHeadContent .artikelDetailHeadContentHeadline {
    font-family: InterDisplay, sans-serif;
    font-weight: 600;
    font-size: 36px;
}
.artikelDetailHead .artikelDetailHeadContent .artikelDetailHeadContentDesignation {
    font-size: 20px;
}

.artikelDetailHead .artikelDetailHeadContent .artikelDetailPreis {
    margin-top: 20px;
    font-size: 24px;
}
.artikelDetailHead .artikelDetailHeadContent .artikelDetailPreis .strikediagLine {
    font-size: 22px;
}


.ProductDetailRadzenAccordion {
    margin-top: 30px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.ProductDetailRadzenAccordion .rz-accordion-header {
    background-color: var(--mwFarbeHintergrund);
    color: var(--mwFarbeText) !important;
    font-size: 15px;
    margin-top: 30px;
}
.ProductDetailRadzenAccordion .rz-accordion-header a {
    color: var(--mwFarbeText) !important;
    font-size: 15px;
}
.ProductDetailRadzenAccordion .rz-accordion-content-wrapper {
    font-size: 15px;
    border: 1px solid var(--mwFarbeHintergrund);
}
.ProductDetailRadzenAccordion .rz-accordion-content-wrapper .rz-accordion-content {
    font-size: 15px;
}


.artikelDetailLagerstandAusgabeElem {
    margin-top: 26px;
}
.artikelDetailLagerstandAusgabeElem .artikelDetailLagerstandAusgabeElemRow {
    margin-top: 6px;
}
.artikelDetailLagerstandAusgabeElem .artikelDetailLagerstandAusgabeElemRow .artikelDetailLagerstandAusgabeElemRowLeft {

}
.artikelDetailLagerstandAusgabeElem .artikelDetailLagerstandAusgabeElemRow .artikelDetailLagerstandAusgabeElemRowRight {
    text-align: right;
}
.artikelDetailLagerstandAusgabeElem .artikelDetailLagerstandAusgabeElemRow .artikelDetailLagerstandAusgabeElemRowRight span {
    display: inline-block;
    margin-left: 6px;
}


.artikelDetailHeadVariantOptionOuter {
    margin-top: 30px;
}
.artikelDetailHeadVariantOptionOuter .col {
    max-width: 215px;
}
.artikelDetailHeadVariantOption {
    position: relative;
    background-color: var(--mwFarbeHintergrund);
    color: var(--mwFarbeText) !important;
    padding: 16px 20px;
    cursor: pointer;
    
    border-radius: var(--mwBorderRadius);
    -moz-border-radius: var(--mwBorderRadius);
    -webkit-border-radius: var(--mwBorderRadius);
}
.artikelDetailHeadVariantOption.isActiveOption {
    background-color: #E1E1E1;
}
.artikelDetailHeadVariantOption .artikelDetailHeadVariantOptionName {

}
.artikelDetailHeadVariantOption .artikelDetailHeadVariantOptionAmount {

}
.artikelDetailHeadVariantOption .artikelDetailHeadVariantOptionDiscountPercent {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 6px;
    background-color: #f22613;
    color: var(--mwFarbeWeiss);

    border-radius: 0 var(--mwBorderRadius) 0 0;
    -moz-border-radius: 0 var(--mwBorderRadius) 0 0;
    -webkit-border-radius: 0 var(--mwBorderRadius) 0 0;
}

.artikelDetailHeadAddToCartBtns {
    margin-top: 30px;
}
.artikelDetailHeadAddToCartBtns .col {
    
}
.artikelDetailHeadAddToCartBtns input {
    width: 100%;
    background-color: var(--mwFarbeHintergrund);
    border: 1px solid var(--mwFarbeHintergrund);
    color: var(--mwFarbeText);
    text-align: center;
    padding: 8px 20px;

    border-radius: var(--mwBorderRadius);
    -moz-border-radius: var(--mwBorderRadius);
    -webkit-border-radius: var(--mwBorderRadius);
}
.artikelDetailHeadAddToCartBtns .btn-primary {

}






/************ Shop - Warenkorb Ansicht ************/

.siteShopWarenkorbOuter {
    position: relative;
    margin: 50px auto 0 auto;
}

.siteShopWarenkorbAusgabeAktionArtikel {
    position: absolute;
    right: 0px;
    background-color: var(--mwFarbeBlau);
    color: var(--mwFarbeSchwarz);
    padding: 8px 16px;
    font-size: 16px;

    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.siteShopWarenkorbErrorText {
    display: none;
    color: #C00;
    margin-bottom: 20px;
}

.siteShopWarenkorbOuterProduktUe {
    font-size: 18px;
    font-weight: bold;
}
#sysModBestellungKundeZusatztext {
    width: 600px;
    height: 120px;
}

#sysModBestellungKundeBestellnummer,
#sysModBestellungKundeBestellreferenz {
    width: 600px;
}
.sysModBestellungKundeSendButton {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    margin: 30px 0px;
    padding: 6px 50px;
    font-size: 18px;
    font-weight: bold;

    cursor: pointer;
}

.siteWarenkorbInfoTextNoProducts {
    margin-top: 30px;
}

.artikelListElementWarenkorb {
    position: relative;
    /*background-color: #f5f5f7;*/
    background-color: #FFFFFF;
    margin-top: 20px;
    padding: 10px 200px 10px 0px;
}
.artikelListElementWarenkorb .artikelListElementWarenkorbImage {
    float: left;
    width: 20%;
    min-height: 125px;
}
.artikelListElementWarenkorb .artikelListElementWarenkorbImage img {
    width: 90%;
}
.artikelListElementWarenkorbImageNoImg {
    width: 100%;
    height: 100px;
    background-image: url('../img/Multiwork-Logo.svg');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;
}

.artikelListElementWarenkorb .artikelListElementWarenkorbTextHolder {
    float: left;
    width: 80%;
}
.artikelListElementWarenkorb .artikelListElementWarenkorbTextHolder .artikelListElementWarenkorbNummer {

}
.artikelListElementWarenkorb .artikelListElementWarenkorbTextHolder .artikelListElementWarenkorbName {
    font-weight: bold;
}
.artikelListElementWarenkorb .artikelListElementWarenkorbTextHolder .artikelListElementWarenkorbNameVariantInfo,
.artikelListElementNameVariantInfoAll{
    display: inline-block;
    margin-left: 20px;
    background-color: var(--mwFarbeBlau);
    padding: 2px 20px;
    
    border-radius: var(--mwBorderRadiusSmall);
    -moz-border-radius: var(--mwBorderRadiusSmall);
    -webkit-border-radius: var(--mwBorderRadiusSmall);
}
.artikelListElementWarenkorb .artikelListElementWarenkorbTextHolder .artikelListElementWarenkorbPreis {

}

.artikelListElementWarenkorbBtnsHolder {
    position: absolute;
    top: 14px;
    right: 14px;
}
.artikelListElementWarenkorbMengeTextInfoShow {
    position: absolute;
    top: 0px;
    left: -30px;
    font-size: 20px;
}
.artikelListElementWarenkorbBtnsHolder input {
    display: inline-block;
    width: 60px;
    text-align: center;
    margin-left: 10px;
}
.artikelListElementWarenkorbBtnsHolder .artikelListElementWarenkorbMengeText {
    display: inline-block;
}
.artikelListElementWarenkorbBtnsHolder .artikelListElementWarenkorbMengeMinus {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #FFFFFF;
    background-color: #000000;
    margin-left: 10px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}
.artikelListElementWarenkorbBtnsHolder .artikelListElementWarenkorbMengeMinus i {
    line-height: 30px;
}
.artikelListElementWarenkorbBtnsHolder .artikelListElementWarenkorbMengePlus {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #FFFFFF;
    background-color: #000000;
    margin-left: 10px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}
.artikelListElementWarenkorbBtnsHolder .artikelListElementWarenkorbMengePlus i {
    line-height: 30px;
}
.artikelListElementWarenkorbBtnsHolder .artikelListElementWarenkorbProduktDel {
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
}

.siteShopWarenkorbInfoNotLogin {
    font-size: 20px;
}
.siteShopWarenkorbInfoNotLoginLink {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF !important;
    margin: 20px 0px;
    padding: 6px 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none !important;

    cursor: pointer;
}


.CartPriceHolder {
    margin-top: 20px;
    border-top: 2px solid #f5f5f7;
    text-align: right;
    padding-top: 14px;
}
.CartPriceHolder .CartPriceOrig {
    font-size: 26px;
}
.CartPriceHolder .CartPriceOrig .strikediagLine {
    font-size: 26px;
}
.CartPriceHolder .CartPriceDiscount {
    margin-top: 10px;
    color: #f22613;
    font-size: 22px;
    font-weight: bold;
}
.CartPriceHolder .CartPriceAfterDiscount {
    margin-top: 10px;
    font-size: 26px;
}


.CartLimitTableLable {
    font-size: 20px;
    margin-top: 20px;
}
.CartLimitTable {
    margin-top: 20px;
    font-size: 20px;
}
.CartLimitTableProgress {
    height: 28px;
    margin-top: 20px;
}


.servInfoTextNoMinSetUser {
    position: relative;
}
.servInfoTextNoMinSetUser .servInfoTextNoMinSetUserIcon {
    position: absolute;
    left: 20px;
    top: 6px;
    color: #f22613;
}
.servInfoTextNoMinSetUser .servInfoTextNoMinSetUserIcon i {
    font-size: 26px;
    line-height: 26px;
}
.servInfoTextNoMinSetUser .servInfoTextNoMinSetUserText {
    margin-left: 60px;
    line-height: 20px;
    color: #f22613;
}


@media (max-width: 950px) {
    .siteShopWarenkorbOuter .form-check {
        width: 100% !important;
    }
}
@media (max-width: 650px) {
    .artikelListElementWarenkorb {
        padding-right: 0px;
    }
    .artikelListElementWarenkorb .artikelListElementWarenkorbImage {
        width: 36%;
    }
    .artikelListElementWarenkorb .artikelListElementWarenkorbTextHolder {
        margin-left: 2%;
        width: 62%;
        min-height: 160px;
    }

    .artikelListElementWarenkorbBtnsHolder {
        top: auto;
        bottom: 14px;
    }
    .artikelListElementWarenkorbProduktDel {
        margin-top: 8px;
    }

    #sysModBestellungKundeZusatztext,
    #sysModBestellungKundeBestellnummer,
    #sysModBestellungKundeBestellreferenz {
        width: 100%;
        height: 100px;
    }
}














/********************************************************* OLD **************************************************/







/************ Element Info Neues ************/
.newInfoElementBig {
    text-align: center;
    padding: 40px 0px 60px 0px;
    margin-top: 80px;
}
.newInfoElementBig.newInfoElementBigBlack {
    background-color: #000000;
}
.newInfoElementBig.newInfoElementBigGrey {
    background-color: #f5f5f7;
}
.newInfoElementBig .newInfoElementBigTextTop {
    font-size: 24px;
    color: #28B5ED;
}
.newInfoElementBig .newInfoElementBigTextMiddle {
    font-size: 62px;
    font-family: InterDisplay, sans-serif;
    font-weight: 600;
}
.newInfoElementBig.newInfoElementBigBlack .newInfoElementBigTextMiddle {
    color: #FFFFFF;
}
.newInfoElementBig .newInfoElementBigTextBottom {
    font-size: 32px;
}
.newInfoElementBig.newInfoElementBigBlack .newInfoElementBigTextBottom {
    color: #FFFFFF;
}
.newInfoElementBig .newInfoElementBigLink {
    display: inline-block;
    font-size: 24px;
    color: #F5C518;
    cursor: pointer;
    margin-top: 30px;
    text-decoration: none !important;
}

@media (max-width: 1300px) {
    .newInfoElementBigImage {
        overflow: auto !important;
        height: auto !important;
    }
    .newInfoElementBigImage img {
        width: 50% !important;
    }
}

@media (max-width: 800px) {
    .newInfoElementBig .newInfoElementBigTextMiddle {
        font-size: 28px;
    }
    .newInfoElementBig .newInfoElementBigTextBottom {
        font-size: 28px !important;
        margin-top: 0px !important;
    }
}




/************ Element Big mit Text ************/
.newInfoElementBigWithText {
    text-align: center;
    padding: 40px 0px 0px 0px;
    background-color: #f5f5f7;
    margin-top: 20px;
}
.newInfoElementBigWithText .newInfoElementBigTextMiddle {
    position: relative;
    font-size: 58px;
    font-family: InterDisplay, sans-serif;
    font-weight: 600;
    z-index: 5;
}
.newInfoElementBigWithText .newInfoElementBigTextBottom {
    position: relative;
    margin: 0px auto;
    width: 430px;
    z-index: 5;
}
.newInfoElementBigWithText .newInfoElementBigLink {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #F5C518;
    cursor: pointer;
    margin-top: 30px;
    text-decoration: none !important;

    z-index: 5;
}


@media (max-width: 1300px) {
    .newInfoElementBigWithTextImage {
        overflow: auto !important;
        height: auto !important;
        margin-top: 10px !important;
        margin-left: 0px !important;
        padding-bottom: 20px;
    }
    .newInfoElementBigWithTextImage img {
        width: 50% !important;
    }
}

@media (max-width: 800px) {
    .newInfoElementBigWithText .newInfoElementBigTextMiddle {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .newInfoElementBigWithText .newInfoElementBigTextBottom {
        width: auto;
    }
}





/************ Element Big Only Text ************/
.elementBigOnlyText {
    text-align: center;
    padding: 120px 0px 60px 0px;
}
.elementBigOnlyText .elementBigOnlyTextTop {
    font-size: 60px;
    line-height: 80px;
    font-family: InterDisplay, sans-serif;
    font-weight: 600;
}
.elementBigOnlyText .elementBigOnlyTextBottom {
    margin: 50px auto;
    width: 600px;
    color: #727378;
}


@media (max-width: 800px) {
    .elementBigOnlyText {
        font-size: 15px;
    }
    .elementBigOnlyText .elementBigOnlyTextBottom {
        width: 100%;
    }
    .elementBigOnlyText .elementBigOnlyTextTop {
        font-size: 28px;
        line-height: 36px;
    }
}





/************ 2 Spalten Big Element ************/
.element2SpaltenBig {
    background-color: #FFFFFF;
    color: #000000;
    padding: 60px 0px;
}
.element2SpaltenBig.element2SpaltenBigBlack {
    background-color: #000000;
    color: #FFFFFF;
}
.element2SpaltenBig .element2SpaltenBigUe {
    font-size: 34px;
    letter-spacing: 2px;
    margin-bottom: 34px;
}

.element2SpaltenBig .container {
    max-width: 1020px;
}

.element2SpaltenBig .element2SpaltenBigTextLineBig {
    letter-spacing: 2px;
    font-family: InterDisplay, sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
}
.element2SpaltenBig .element2SpaltenBigTextLine {
    margin-bottom: 10px;
}
.element2SpaltenBig .element2SpaltenBigTextLine i {
    display: inline-block;
    width: 30px;
}

.element2SpaltenBig .element2SpaltenBigBottom {
    margin-top: 50px;
}

.element2SpaltenBig .element2SpaltenBigIconBrands, .element2SpaltenBig .element2SpaltenBigIconBrands:active {
    display: inline-block;
    color: #000000;
    width: 40px;
    margin: 0px 8px;
    text-align: center;
    text-decoration: none;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.element2SpaltenBig.element2SpaltenBigBlack .element2SpaltenBigIconBrands, .element2SpaltenBig.element2SpaltenBigBlack .element2SpaltenBigIconBrands:active {
    color: #FFFFFF;
}
.element2SpaltenBig .element2SpaltenBigIconBrands:hover, .element2SpaltenBig .element2SpaltenBigIconBrands:focus {
    color: #F5C518;
}
.element2SpaltenBig .element2SpaltenBigIconBrands i {
    font-size: 30px;
}

.element2SpaltenBig .element2SpaltenBigLinks, .element2SpaltenBig .element2SpaltenBigLinks:active {
    display: inline-block;
    color: #000000;
    text-decoration: none;
    margin-right: 20px;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.element2SpaltenBig.element2SpaltenBigBlack .element2SpaltenBigLinks, .element2SpaltenBig.element2SpaltenBigBlack .element2SpaltenBigLinks:active {
    color: #FFFFFF;
}
.element2SpaltenBig .element2SpaltenBigLinks:hover, .element2SpaltenBig .element2SpaltenBigLinks:focus {
    color: #F5C518;
}





/************ Element Text mit Überschrift ************/
.elementTextContainer {
    padding: 30px 0px;
}
.elementTextContainer .container {
    max-width: 1020px;
}
.elementTextContainer .elementTextContainerTextUe {
    font-size: 30px;
    font-weight: normal;
}
.elementTextContainer .elementTextContainerTextPara {
    margin-top: 30px;
}
.elementTextContainer .elementTextContainerTextPara .elementTextContainerTextParaUe {
    font-family: Inter, sans-serif; 
    font-weight: 700;
    margin-bottom: 5px;
}
.elementTextContainerTextParaShowBold {
    font-family: Inter, sans-serif;
    font-weight: 700;
}
.elementTextContainerTextParaUlElem {

}
.elementTextContainerTextParaUlElem li {
    padding: 5px 0px;
}





/************ Login Form ************/
.sysLoginPageHolder form, .sysLoginPageHolder input {
    display:inline;
    outline:none;
}
.sysLoginPageHolder input[type="checkbox"]:focus, .sysLoginPageHolder input[type="radio"]:focus {
    outline:none;
}

.sysLoginPageHolder {
    margin: 0px auto 0px auto;
    width: 400px;
}
.sysLoginFormHolderOuter {
    padding-bottom: 40px;
}
.sysLoginFormHolder {
    padding-top: 150px;
    /*position: fixed;
    top: 0px;
    bottom: 0px;
    right: 0px;
    margin:auto;
    width:530px;
    padding:180px 80px 30px 80px;
    background-color:#FFF;*/
}
.sysLoginFormHolder .sysLoginFormInner {

}
.sysLoginFormHolder .sysLoginFormInner input[type="text"],
.sysLoginFormHolder .sysLoginFormInner input[type="password"] {
    width:100%;
    padding:12px;
    background-color:#FFF;
    border:1px solid #CCCCCC;
    font-size:15px;
    margin-top:15px;
    color:#333;
}
.sysLoginFormHolder .sysLoginFormInner input[type="submit"] {
    width:100%;
    padding:9px 0;
    background-color:#000000;
    border:1px solid #000000;
    font-size:17px;
    margin-top:15px;
    color:#FFFFFF;
    font-weight:bold;
    cursor:pointer;

    -webkit-transition:all 0.2s ease-out 0s;
    -moz-transition:all 0.2s ease-out 0s;
    -o-transition:all 0.2s ease-out 0s;
    transition:all 0.2s ease-out 0s;
}
.sysLoginFormHolder .sysLoginFormInner input[type="submit"]:hover {
    opacity:.8;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter:alpha(opacity=80);
}
.sysLoginFormHolder .sysLoginFormInner input[type="submit"].sysLoginSubmitLoader {
    background-image:url('../img/loader.gif');
    background-repeat:no-repeat;
    background-position:center center;
}

.sysLoginFormInputError {
    border:1px solid #C00 !important;
    box-shadow:0 0 3px #C00 inset;
    -moz-box-shadow:0 0 3px #C00 inset;
    -webkit-box-shadow:0 0 3px #C00 inset;
}

.allNewBestellungHolderSuccessReadyIco {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}
.allNewBestellungHolderSuccessReadyText {
    text-align: center;
    font-size: 18px;
}

@media (max-width: 600px) {
    .sysLoginPageHolder {
        margin-left: 15px;
        margin-right: 15px;
        width: auto;
    }
    .sysLoginFormHolder .sysLoginFormInner input[type="text"],
    .sysLoginFormHolder .sysLoginFormInner input[type="password"],
    .sysLoginFormHolder .sysLoginFormInner input[type="submit"] {
        width:100%;
    }

    .sysLoginFormInnerLogoSelf {
        width:100% !important;
    }
}






/************ Shop - Bestellungen Ansicht ************/
.siteShopBestellungenListOuter {
    margin: 146px auto 0px auto;
    width: 1100px;
}

@media (max-width: 1200px) {
    .siteShopBestellungenListOuter {
        margin: 26px auto 0px auto;
        width: 800px;
    }
}
@media (max-width: 820px) {
    .siteShopBestellungenListOuter {
        margin: 26px auto 0px auto;
        width: 500px;
    }
}
@media (max-width: 620px) {
    .siteShopBestellungenListOuter {
        margin: 26px auto 0px auto;
        width: 280px;
    }
}




/************ Shop - Bestellte Artikel Ansicht ************/
.siteShopBestellteArtikelListOuter {
    margin: 146px auto 0px auto;
    width: 1100px;
}

@media (max-width: 1200px) {
    .siteShopBestellteArtikelListOuter {
        margin: 26px auto 0px auto;
        width: 800px;
    }
}
@media (max-width: 820px) {
    .siteShopBestellteArtikelListOuter {
        margin: 26px auto 0px auto;
        width: 500px;
    }
}
@media (max-width: 620px) {
    .siteShopBestellteArtikelListOuter {
        margin: 26px auto 0px auto;
        width: 280px;
    }
}






/************ Shop - Artikel Detail ************/
.artikelDetailHeadBackground {
    background-color: #FFFFFF;
    padding: 60px 0px;
}
.artikelDetailHeadBackgroundInner {
    margin: 0px auto;
    width: 1200px;
}
.artikelDetailHeadBackgroundInner .artikelDetailHeadBackgroundLeft {
    position: relative;
    float: left;
    width: 50%;
}
.artikelDetailHeadBackgroundInner .artikelDetailHeadBackgroundRight {
    position: relative;
    float: left;
    width: 50%;
    padding: 40px 50px;
}

.artikelDetailName {
    font-size: 36px;
    font-weight: bold;
}
.artikelDetailBezeichnung {
    font-size: 20px;
}
.artikelDetailBeschreibung {
    margin-top: 20px;
}

.artikelListElementImageNoImgDetail {
    display: inline-block;
    width: 62%;
    height: 480px;
    background-image: url('../img/Multiwork-Logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.showReferenzArtikelBilderHolder {
    margin-top: 30px;
}
.showReferenzArtikelBilderHolder .showReferenzArtikelBilderElem {
    display: inline-block;
    margin-right: 35px;
    text-align: center;
}
.showReferenzArtikelBilderElemText {
    margin-top: 10px;
}
.showReferenzArtikelBilderHolder .showReferenzArtikelBilderElem img {
    height: 70px;
}

.artikelDetailBtnRight {
    display: block;
    width: 80%;
    border: 1px solid #000000;
    text-align: center;
    text-decoration: none !important;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    padding: 6px 0px;
    margin-top: 10px;
    cursor: pointer;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.artikelDetailBtnRight.artikelDetailBtnRightWarenkorb,
.artikelDetailBtnRight.artikelDetailBtnRightWarenkorbWithAktion {
    background-color: #000000;
    color: #FFFFFF;
}
.artikelDetailBtnRight:hover {
    background-color: #000000;
    color: #FFFFFF;
}
.artikelDetailBtnRight.artikelDetailBtnRightWarenkorb:hover {

}
.btnStartBigOwn.artikelDetailBtnRightWarenkorbWithAktion {
    position: relative;
    background-color: #f22613;
    border: 1px solid #f22613;
    color: #FFFFFF;
}
.btnStartBigOwn.artikelDetailBtnRightWarenkorbWithAktion > span {
    position: absolute;
    right: 20px;
}


.artikelDetailHeadAddToCartBtns .artikelDetailBtnRightWarenkorbWithAktionNoUserLoggedIn,
.artikelDetailHeadAddToCartBtns .artikelDetailBtnRightWarenkorbWithAktionIsNotActive {
    background-color: #ccc !important;
    color: #FFF !important;
    cursor: auto;
    border: 1px solid #ccc !important;
}

.artikelDetailImage img {
    width: 75%;
}

.artikelDetailHeadBackgroundLeftInfoBtns {
    text-align: center;
    margin-top: 20px;
}
.artikelDetailHeadBackgroundLeftInfoBtns img {
    width: auto !important;
}
.artikelDetailHeadBackgroundLeftInfoBtns .artikelDetailHeadBackgroundLeftInfoBtnKategorie {
    float: left;
    width: 48%;
    color: #FFFFFF;
}
.artikelDetailHeadBackgroundLeftInfoBtns .artikelDetailHeadBackgroundLeftInfoBtnKategorie > div {
    height:40px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    cursor: pointer;
    padding-top: 7px;
    margin-right: 4%;
}
.artikelDetailHeadBackgroundLeftInfoBtns .artikelDetailHeadBackgroundLeftInfoBtnKategorie img {
    height: 20px;
    vertical-align: text-bottom;
    margin-right: 10px;
}
.artikelDetailHeadBackgroundLeftInfoBtns .artikelDetailHeadBackgroundLeftInfoBtnPhWert {
    float: left;
    width: 48%;
    color: #FFFFFF;
}
.artikelDetailHeadBackgroundLeftInfoBtns .artikelDetailHeadBackgroundLeftInfoBtnPhWert > div {
    height:40px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    cursor: pointer;
    padding-top: 7px;
}

.artikelDetailOptionsSetSelectOuter {
    margin-top: 16px;
}


.artikelZusatzBoxOuter {
    background-color: #f5f5f7;
    text-align: center;
    margin-top: 10px;
    padding: 50px 0px;
}
.artikelZusatzBoxOuter .artikelZusatzBoxUe {
    font-size: 34px;
    font-family: InterDisplay, sans-serif;
    font-weight: 600;
}
.artikelZusatzBoxOuter .artikelZusatzBoxText {
    width: 800px;
    margin: 20px auto;
    font-size: 16px;
}


@media (min-width: 901px) and (max-width: 1200px) {
    .artikelDetailHeadBackgroundInner {
        margin: 0px auto;
        width: 900px;
        padding: 0px;
    }

    .artikelDetailBtnRight {
        width: 100%;
    }


    .artikelDetailImage {
        text-align: center;
    }
    .artikelDetailImage img {
        width: 80%;
    }


    .artikelDetailHeadBackgroundLeftPiktogramme {
        position: relative;
        text-align: center;
        top: auto;
        right: auto;
        width: 100%;
    }
    .artikelDetailHeadBackgroundLeftPiktogramme img {
        width:40px;
        margin-top:0px;
        margin-right: 8px;
    }
}


@media (max-width: 900px) {
    .artikelDetailHeadBackgroundInner {
        margin: 0px auto;
        width: auto;
        padding: 0px 20px;
    }
    .artikelDetailHeadBackgroundInner .artikelDetailHeadBackgroundLeft {
        float: none;
        width: 100%;
    }
    .artikelDetailHeadBackgroundInner .artikelDetailHeadBackgroundRight {
        float: none;
        width: 100%;
        padding: 0px;
        margin-top: 30px;
    }

    .artikelDetailBtnRight {
        width: 100%;
    }

    .artikelDetailHeadBackgroundLeftInfoBtns .artikelDetailHeadBackgroundLeftInfoBtnKategorie,
    .artikelDetailHeadBackgroundLeftInfoBtns .artikelDetailHeadBackgroundLeftInfoBtnPhWert {
        width: 50%;
    }

    .artikelDetailImage img {
        width: 60%;
    }

    .artikelListElementImageNoImgDetail {
        width:55%;
        height: 130px;
    }

    #artikelDetailOptionsSetSelect {
        max-width: 100%;
    }

    .artikelDetailHeadBackgroundLeftPiktogramme {
        right: 150px;
    }

    /*.artikelDetailHeadBackgroundLeftPiktogramme {
        position: relative;
        text-align: center;
        top: auto;
        right: auto;
        width: 100%;
    }
    .artikelDetailHeadBackgroundLeftPiktogramme img {
        width:40px;
        margin-top:0px;
        margin-right: 8px;
    }*/
}

@media (max-width: 750px) {
    .artikelDetailHeadBackground {
        padding-top: 30px;
    }

    .artikelDetailImage {
        text-align: center;
    }
    .artikelDetailImage img {
        width: 80%;
    }

    .artikelDetailHeadBackgroundLeftPiktogramme {
        position: relative;
        text-align: center;
        top: auto;
        right: auto;
        width: 100%;
    }
    .artikelDetailHeadBackgroundLeftPiktogramme img {
        width:40px;
        margin-top:0px;
        margin-right: 8px;
    }
}







.InfoWindowAktionShowNotLoggedInOverlay {
    position: fixed;
    top:0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #00000099;

    z-index: 9999;
}
.InfoWindowAktionShowNotLoggedIn {
    position: fixed;
    top:50%;
    left: 50%;
    width: 600px;
    height: 400px;
    margin-left: -300px;
    margin-top: -200px;
    background-color: #FFFFFF;
    z-index: 99991;
}



.artikelWarenkorbCheckboxAktion {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #f22613;
    color: #FFF;
    padding: 10px 20px 0px 20px;

    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}
.artikelWarenkorbCheckboxAktionNotActive {
    background-color: #CCCCCC !important;
    cursor: auto !important;
}
.artikelWarenkorbCheckboxAktionNotActive .sysBackenFormOnceCheckboxLbl {
    cursor: auto !important;
}
.artikelWarenkorbCheckboxAktionNotActive .sysBackenFormOnceCheckboxLbl input ~ .checkmark {
    background-color: #CCC !important;
}







/********** Special Checkbox **********/
/* Customize the label (the container) */
.sysBackenFormOnceCheckboxLbl {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bigWindowInhaltFormsSelfOnceMaModule .sysBackenFormOnceCheckboxLbl {
    margin-bottom: 12px !important;
    margin-right: 25px;
}

/* Hide the browser's default checkbox */
.sysBackenFormOnceCheckboxLbl input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
}

/* On mouse-over, add a grey background color */
.sysBackenFormOnceCheckboxLbl:hover input ~ .checkmark {
    background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.sysBackenFormOnceCheckboxLbl input:checked ~ .checkmark {
    background-color: #FFF;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.sysBackenFormOnceCheckboxLbl input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.sysBackenFormOnceCheckboxLbl .checkmark:after {
    left: 9px;
    top: 5px;
    width: 7px;
    height: 12px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}







.aktionenInfoHolder {
    position: relative;
}

.aktionenInfoHolder .aktionenInfoBackgroundSet,
.aktionenInfoHolder .aktionenInfoBackgroundBlaetterSet {
    position: absolute;
    top:0px;
    left:0px;
    right: 0px;

    z-index: -1;
}
.aktionenInfoHolder .aktionenInfoBackgroundBlaetterSet {
    height: 120px;
    overflow: hidden;
    background-image: url('../img/aktionen/blaetter.svg');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 65%;
}
.aktionenInfoHolder .aktionenInfoBackgroundSet img,
.aktionenInfoHolder .aktionenInfoBackgroundBlaetterSet img {
    width: 65%;
}
.aktionenInfoHolder .aktionenInfoBackgroundBlaetterSet img {
    display: none;
}

.aktionenInfoHolder .aktionenInfoTextHolder {
    padding: 100px 0px 0px 100px;
    min-height: 1300px;
    max-width: 45%;
    font-size: 15px;
}
.aktionenInfoTextHolderUeZeitraum {
    position: relative;
    margin-top: -40px;
    margin-left: 0;
    font-size: 30px;
    color: #5FCBE0;
}
.aktionenInfoHolder .aktionenInfoTextHolder .aktionenInfoTextHolderUe {

}
.aktionenInfoHolder .aktionenInfoTextHolder .aktionenInfoTextHolderUe img {
    width: 300px;
}
.aktionenInfoHolder .aktionenInfoTextHolder .aktionenInfoTextHolderBottom {

}
.aktionenInfoHolder .aktionenInfoTextHolder .aktionenInfoTextHolderBottom img {
    width: 340px;
}

.aktionenInfoTextHolderInner {
    margin: 30px 0px;
}
.aktionenInfoTextHolderInnerElement {
    margin-bottom: 10px;
}
.aktionenInfoTextHolderInnerElement span.aktionenInfoTextHolderInnerElementBig {
    float: left;
    width: 10%;
    color: #5FCBE0;
    font-size: 30px;
}
.aktionenInfoTextHolderInnerElement span.aktionenInfoTextHolderInnerElementSmall {
    float: left;
    width: 90%;
    margin-top: 10px;
}


.aktionenInfoHolder .aktionenInfoBeschreibungPicSet {
    position: absolute;
    top:110px;
    right: 150px;
}
.aktionenInfoHolder .aktionenInfoBeschreibungPicSet img {
    width: 400px;
}



@media (max-width: 1500px) {
    .aktionenInfoTextHolderUeZeitraum {
        margin-left: 0;
    }
}

@media (max-width: 1300px) {
    .aktionenInfoHolder .aktionenInfoBackgroundBlaetterSet {
        top: 100px;
        height: 120px;
        overflow: hidden;
        background-size: 100%;
    }


    .aktionenInfoHolder .aktionenInfoBackgroundSet {
        display: none;
    }


    .aktionenInfoHolder .aktionenInfoBeschreibungPicSet {
        position: absolute;
        top:250px;
        right: 150px;
    }

    .aktionenInfoTextHolderUeZeitraum {
        margin-left: 0;
    }
}

@media (max-width: 1160px) {
    .aktionenInfoHolder .aktionenInfoTextHolder {
        padding: 100px 100px 0px 100px;
        min-height: auto;
        max-width: 100%;
    }

    .aktionenInfoHolder .aktionenInfoBeschreibungPicSet {
        position: relative;
        margin: 40px 0px;
        top:auto;
        right: auto;
        text-align: center;
    }
    .aktionenInfoHolder .aktionenInfoBeschreibungPicSet img {
        width: 400px;
    }
}

@media (max-width: 650px) {
    .aktionenInfoHolder .aktionenInfoTextHolder {
        padding: 100px 20px 0px 20px;
    }

    .aktionenInfoHolder .aktionenInfoBeschreibungPicSet img {
        width: 90%;
    }

    .aktionenInfoTextHolderUeZeitraum {
        margin-top: 20px;
        margin-left: 0;
        font-size: 26px;
    }
}





.OwnMMRadzenDataGrid, .sysContentForDialogPages {
    font-weight: 400;
}
.OwnMMRadzenDataGrid .RadzenDataGridColumnIconSelf i {
    font-size: 18px;
}
.OwnMMRadzenDataGrid .RadzenDataGridColumnChangeButtons i {
    font-size: 18px;
    cursor: pointer;
    margin-left: 8px;
}





.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}
