/* css zu home *//* MainHeaderCSS  *//* ----------------------------------------------------- */
/* -------------------- Main Header -------------------- */
/* ----------------------------------------------------- */
#mainHeader {
    position: sticky;
    top: 0;
	z-index: 2;
}

#mhIntern {
    margin-bottom: 40px;
}


/* ----------------------------------- */
/* ---------- Orange Header ---------- */
/* ----------------------------------- */
#mainHeaderOrangeWrapper {
    background-color: var(--orange);
    padding: 10px 0;
}

#mainHeaderOrangeLeft {
    width: calc(100% - 80px);
}

#mainHeaderOrangeRight {
    width: 80px;
    text-align: right;
}

#mainHeaderOrangeHome, #mainHeaderOrangeSearch {
    display: inline-block;
    vertical-align: top;
    height: 25px;
    width: 25px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#mainHeaderOrangeHome {
    background-image: url('/bilder/home.gif');
    margin-right: 8px;
}

#mainHeaderOrangeSearch {
    background-image: url('/bilder/search.gif');
}

@media (max-width: 1024px) {
     #mainHeaderOrangeWrapper {
        background-color: transparent;
        padding: 0;
        height: 0;
    }

    #mainHeaderOrangeRight {
        position: absolute;
        right: 15px;
        bottom: 15px;
    }

    #mainHeaderOrangeHome {
        background-image: url('/bilder/home_black.gif');
    }

    #mainHeaderOrangeSearch {
        background-image: url('/bilder/search_black.gif');
    }

    #mhIntern #mainHeaderOrangeRight {
        display: none;
    }
}

/* Suche */
#mainHeaderSucheWrapper {
    display: none;
    position: absolute;
    top: calc(100% + var(--abstand_9));
    right: 0;
    z-index: 2;
    width: calc(100vw - 20px);
    max-width: 280px;
    padding: 20px;
    background-color: var(--orange);
    border: 1px solid #eee;
    box-shadow: #999 2px 2px 5px;
    text-align: left;
}

#mainHeaderSucheChk:checked ~ #mainHeaderSucheWrapper {
    display: block;
}

#mainHeaderSucheTbBtn {
    position: relative;
}

#tbSucheAjax {
    width: 100%;
    height: 40px;
    padding-right: 40px;
    padding-left: 10px;
}

#btnSucheAjax {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAACb0lEQVRIib3VzU8TQRjH8f5Pu9ta4m4Lulhveyk1NB70II1BCvISDEEkFD0YjTfjS5Bq2mhQSJSTpdD0ICGabjdQTxDQCBUFLSCvgXw9kGKQtlua6iS/yxzmszvzPDMW/sOw/D2xsrZBf2iEmtoeJKvvUDzeAMFwlJW1jdKRt2M6DmcjsuKn995L3s+mSQPzu3tMzCzQ3t3PKbUFZ2UTkVjy+Mjg8DhWm4/rt0LMbW6ThpyZ/PqDtq4n2CvqGRweLx6JxJLYK+oJD4/nXHg5kzlIdu7Ri1GsNl9Rf2RZWdvAWdnEjdvP8359LmR+d4+O3mcoDr/pGVn6QyM4q64yvbqeF8mXz9s7KA4/wXC0MFJT20PnzdCxgWyaOx7j8QYKI6JYx8TMQsnI0JiOZPUVRgThUslAGpha/Fkc8mlrp2Tk4/eMOWK1+RjVp0tGBkcT5ojHG6C7QPmapa2rz/zgg+Eo1a62gl2et/vTyzicjeYlnG3GwN0BvuzsFg1EdZ1z5xuQ5YvmzQj714rV5uPOg9dFAXOb21yoa0UQRKrPnMUwDHME4NWbd9hOXOZaz1Mm08t5gdn1LRrbHyJJXlTVhSAIKIpSEDp01UdiSZyVTVSdbqa1s4+hMZ2pxR+kvmUYiHzgSst9TsoNKA4/kVgSwzBQFAVRFHG73XmhI4/W6q9NguEoHm8Aq813KLkeLcMwcLvdiKKILMs5oSNIKcMwDGRZRhAENE0jkUiUH8lCmqYhSRIulwtd18uPACQSCVyu/WJQVfVg68qKAOi6jqqqSJKEpmmkUqnyI/Bn6+x2O/F4/N8gAKlUing8ztLSEr8BqLvTef4CrnkAAAAASUVORK5CYII=');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
}

#mainHeaderSucheClose {
    display: none;
}

#mainHeaderSucheClose {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#mainHeaderSucheChk:checked ~ #mainHeaderSucheClose {
    display: block;
}

#ergebnisseSucheAjax {
    display: none;
    position: absolute;
    top: calc(100% + var(--abstand_9));
    right: 0;
    width: calc(100vw - 20px);
    max-width: 400px;
    max-height: 400px;
    overflow-y: auto;
    background-color: var(--white);
    z-index: 1;
    padding: var(--abstand_9);
    border: 1px solid #eee;
    box-shadow: #999 2px 2px 5px;
}

#mainHeaderSucheChk:not(:checked) ~ #mainHeaderSucheWrapper #ergebnisseSucheAjax {
    display: none !important;
}

.ergebnisSucheBeitrag {
    border-bottom: 1px solid var(--gray2);
    padding-bottom: var(--abstand_9);
    margin-bottom: var(--abstand_9);
}

.ergebnisSucheBeitrag:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.ergebnisSucheAjaxHeadline {
    margin-bottom: 5px;
    font-size: 18px;
}

.ergebnisSucheAjaxText {
    margin-bottom: var(--abstand_9);
}







/* ---------------------------------- */
/* ---------- Orange Menue ---------- */
/* ---------------------------------- */
#mainMenueOrange_mobile_chk, #mainMenueOrange_kb_show_menu, #mainMenueOrange_kb_hide_menu,
#mainMenueOrange li > div {
    display: none;
}

@media (min-width: 1025px) {
    #mainMenueOrange, #mainMenueOrange ul {
        margin: 0;
        padding-left: 0;
        list-style: none;
    }

    #mainMenueOrange {
        display: flex;
        flex-wrap: wrap;
        font-size: 14px;
        line-height: 100%;
    }

    #mainMenueOrange > li {
        padding: 0 18px;
        border-right: 1px solid var(--white);
        position: relative;
    }

    #mainMenueOrange > li:first-of-type {
        padding-left: 0;
    }

    #mainMenueOrange > li:last-of-type {
        padding-right: 0;
        border-right: none;
    }

    #mainMenueOrange a {
        color: var(--white);
    }

    #mainMenueOrange > li > a:hover,
    #mainMenueOrange > li > a:focus {
        text-shadow: 0px 0px 2px white;
    }


    /* Ebene 2 */
    #mainMenueOrange ul {
        display: none;
    }

    #mainMenueOrange > li > ul {
        width: 200px;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        background-color: var(--orange);
        padding: 18px;
        line-height: 1.4rem;
        z-index: 1;
    }

    #mainMenueOrange > li:hover > ul {
        display: block;
    }

    #mainMenueOrange > li > ul::before {
        content: '';
        display: block;
        width: 100%;
        height: 10px;
        position: absolute;
        top: -10px;
        left: 0;
    }
}

@media (min-width: 1025px) and (max-width: 1240px){
    #mainMenueOrange > li {
        padding: 0 10px;
    }
}

@media (min-width: 1025px) and (max-width: 1100px){
    #mainMenueOrange > li {
        padding: 0 6px;
    }
}

@media (max-width: 1024px) {
    #mainMenueOrange {
        display: none;
    }
}




/* --------------------------------- */
/* ---------- Gray Header ---------- */
/* --------------------------------- */
#mainHeaderGrayWrapper {
    background-color: #A7AAAD;
    padding: 12px 0;
}

@media (max-width: 1024px) {
    #mainHeaderGrayWrapper {
        background-color: transparent;
        padding: 0;
        height: 0;
    }
}


/* -------------------------------- */
/* ---------- Gray Menue ---------- */
/* -------------------------------- */
#mainMenueGray_mobile_chk, #mainMenueGray_kb_show_menu, #mainMenueGray_kb_hide_menu,
#mainMenueGray li > div {
    display: none;
}

@media (min-width: 1025px) {
    #mainMenueGray {
        margin: 0;
        padding-left: 0;
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        font-size: 22px;
        line-height: 100%;
    }

    #mainMenueGray > li {
        padding: 0 19px;
        border-right: 2px solid var(--white);
    }

    #mainMenueGray > li:first-of-type {
        padding-left: 0;
    }

    #mainMenueGray > li:last-of-type {
        padding-right: 0;
        border-right: none;
    }

    #mainMenueGray > li > a {
        color: var(--white);
    }

    #mainMenueGray > li > a:hover,
    #mainMenueGray > li > a:focus {
        text-shadow: 0px 0px 2px white;
    }


    /* Ebene 2 */
    #mainMenueGray ul {
        display: none;
    }
}

@media (max-width: 1024px) {
    #mainMenueGray {
        display: none;
    }
}





/* --------------------------------- */
/* ---------- Mobil Menue ---------- */
/* --------------------------------- */
#mainMenueMobilChk {
    display: none;
}

@media (min-width: 1025px) {
    #mainMenueMobilOpen, #mainMenueMobilHideLayer, #mainMenueMobilPic, #mainMenueMobilClose {
        display: none;
    }
}

@media (max-width: 1024px) {
    #mainMenueMobilSeitenreiter {
        background-color: var(--gray3);
        position: fixed;
        top: 0;
        left: -280px;
        width: 100%;
        max-width: 280px;
        height: 100%;
        padding: 10px 0;
        overflow-x: hidden;
        overflow-y: auto;
        transition: left 500ms ease-in-out;
        z-index: 1;
    }

    #mainMenueMobilChk:checked ~ #mainMenueMobilSeitenreiter {
        left: 0;
        box-shadow: 5px 5px 5px rgba(0,0,0,.3);
    }

    .mainMenueMobil {
        display: block !important;
        margin: 0;
        padding-left: 0;
        list-style: none;
        font-size: 22px;
    }

    .mainMenueMobil li {
        padding: 10px 10px 10px 50px;
        position: relative;
    }

    .mainMenueMobil > li:hover, .mainMenueMobil > li.openleaf {
        background-color: var(--gray2);
    }

    .mainMenueMobil > li.openleaf {
        padding-bottom: 0;
    }

    .mainMenueMobil a {
        color: var(--black);
    }

    .mainMenueMobil > li.isnode > div {
        display: block !important;
        content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAbCAYAAAAOEM1uAAAARElEQVRYhe3OMQoAMAgEQf//adNomaAkwSt2wE64NQMASR736/+aW3208/tUZXgsrhIwHncKkYlLvjkp0nFJOg4AAPQtXxMn2WgLTZQAAAAASUVORK5CYII=');
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        user-select: none;
    }



    /* Ebene 2 */
    .mainMenueMobil ul {
        display: none;
    }

    .mainMenueMobil > li > ul {
        background-color: var(--gray4);
        margin: 0;
        padding-left: 0;
        list-style: none;
        width: calc(100% + 50px + 10px);
        margin-left: -50px;
        margin-top: 10px;
    }

    .mainMenueMobil > li.openleaf > ul {
        display: block;
    }

    .mainMenueMobil > li > ul > li:hover {
        background-color: var(--gray3);
    }


    /* Logo */
    #mainMenueMobilPic {
        display: block;
        height: 48px;
        margin: 25px 10px 20px 50px;
    }


    /* Labels */
    #mainMenueMobilOpen {
        display: block;
        height: 32px;
        width: 45px;
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAN0AAACHCAYAAACS0VyLAAAA60lEQVR4nO3ZwQkDMRAEQeUlpaoAT0nIQRj6MK6C/u9nXjvWmldS13j7AOnfMjopzuikOKOT4oxOijM6Kc7opLjxnHMldQ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvrH3vpK6xlrzSuoyOinO6KQ4o5PijE6KMzopzuikOH86Ke7t3zwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAj3vOuZK6xlrzSuoyOinO6KQ4o5PijE6KMzopzuikOKOT4j5VTgP+IookSAAAAABJRU5ErkJggg==');
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        left: 15px;
        bottom: 15px;
    }


    #mainMenueMobilHideLayer {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    #mainMenueMobilChk:checked ~ #mainMenueMobilHideLayer {
        display: block;
    }


    #mainMenueMobilClose {
        display: block;
        width: 30px;
        height: 32px;
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKQAAAClCAYAAADS6VbkAAAD5klEQVR4nO3X0W7jMAxEUf//T2cfCizSxnYsipSG5D2PRYpSM4Ng9zjOvS5+Dnh4HQMbex2DvwAMeB0DG/v7YUYJT2f7utzY1YcZJTzc7etjY98+zCgx48m+XqMfZpSwGNnXy/QLwEOj2zINklHiialdMUp4ctkTo4QH1x0xSswI2Q+jhEXobhglRizZC6PEE0t3wihxZ8s+GCXObN0Fo8Q7iT1IHIHtpHYgdQyWk+xf8iiEk+5d+ji4S9F3iiMxLVXPqY7FsJT9pjwaX6XuNfXx+FCizxKPQK0eSz2moZL9lXxUA6V7K/24glr01eKRBbTqqdVjE2rZT8tHJ9C6l9aPF0QfByGooIc3hLEX+Z8glD3I/QbhrEXeDxDSGuQ8gLBika8BocUg1wmE54s8HRCiD3J0RJhzyC8AodqQWyDCHUNeCxDyM+S0EGHfI58NCP0cuWxE+L+RhwBK+EEOQrqX0f39krqW0vXdKXQrp9t7U+pSUpd3llC9rOrvK6lqaVXf1UK18qq9p6UqJVZ5B478ZWa/Hyeylpr1bjyQrdxs98IgS8lZ7oQD9bLV70MA1dJV78ICauWr3YMNVEagcgcE7B7D7r8PQbtGwRhxafU4GCO+WjUSxojHosfCGDEsajSMEWbe42GMmOY1IsYIN7NjYoxwZx0VY0QYy7gYI0IxRshhjJDDGCGHMUIOY4QcxggZfENCBv+GhAz+lw0ZnmNklJgSMUZGCZPIMTJKDLGOi1HC3eyoGCXceI2JUWKa94gYJcyixsMoMSx6NIwSj60aC6PEV6tHwihxadc4GCU+7B7F7r8PISpjULkDG6mNQO0eLKRavupdCKReuvp9cJSl7Cx3YkK2krPdiwFZy816N25kLzX7/XhTpcwq72itWonV3tNK1fKqvqu06qVVf18pXcrq8s7UupXU7b2pdC2n67uldS+l+/ulUMYPchBACb+Rx0aEf45cNiD0e+SzEGE/Q04LEPIY8gpEuDbkFoBQ55CfI8L0QY4OCNEXeU4gvBjkakBosch3AGGtQc4PENJa5H2DcPYg9xOEshf5vyEMDfRwEIKa1n20frywlr20fHQirfpp9djEWvTU4pGFlO6r9OMKK9lbyUc1Uqq/Uo9prESPJR6B/1L3mfp4XErZa8qj8ViqflMdC7MUPac4Em6k+5Y+DmEke5c8CstI9S91DLaR2IHEEZCxdQ+MEWe27IIx4s7SfTBGPLFkJ4wRI0L3whhhEbIbxogZrvthjPDgsiPGCE9Te2KMiGDeFWNEFNMoGSMihX1LAlamLzzGiEimLzzGiEimLzzGiEimLzzGiEiXY/wHsn/AE89JlukAAAAASUVORK5CYII=');
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 38px;
        left: 11px;
    }
}




/* ---------------------------------- */
/* ---------- Header Mobil ---------- */
/* ---------------------------------- */
@media (min-width: 1025px) {
    #mainHeaderMobilWrapper {
        display: none;
    }
}

@media (max-width: 1024px) {
    #mainHeaderMobilWrapper {
        background-color: var(--gray5);
        box-shadow: 0px 2px 4px #cecece;
        height: 103px;
        display: flex;
        justify-content: center;
    }

    #mainHeaderMobilPic {
        display: block;
        width: 200px;
        height: 58px;
        margin-top: 30px;
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 600px) {
    #mainHeaderMobilPic {
        width: 150px;
        margin-top: 10px;
    }
}





/* --------------------------- */
/* ---------- No JS ---------- */
/* --------------------------- */
#noJSMessage {
	width: 40px;
	height: 40px;
	position: fixed;
	right: var(--abstand_9);
	bottom: var(--abstand_9);
	z-index: 2;
}




/* --------------------------------------------- */
/* ---------- Main Header intern Logo ---------- */
/* --------------------------------------------- */
#mainHeaderInternTop {
    background-color: var(--white);
}

#mainHeaderInternTopWrapper {
    display: flex;
    justify-content: right;
    align-items: end;
    padding-top: 10px;
    padding-bottom: 10px;
}

#mainHeaderInternKundeSimInfo {
    width: calc(100% - 300px);
    font-size: 90%;
    line-height: 100%;
}

#mainHeaderInternLogo {
    display: block;
}

#mainHeaderInternLogo img {
    display: block;
    max-height: 88px;
    max-width: 300px;
}

@media (max-width: 1024px) {
    #mainHeaderInternTop {
        display: none;
    }
}



/* -------------------------------------------------------- */
/* ---------- Main Header intern unterer Bereich ---------- */
/* -------------------------------------------------------- */
#mainHeaderInternBottom {
    background-color: var(--gray5);
}

#mainHeaderInternBottomWrapper {
    height: 70px;
}

@media (max-width: 1024px) {
    #mainHeaderInternBottomWrapper {
        height: 0;
    }
}



/* --------------------------------------------------- */
/* ---------- Main Header intern Shop Menue ---------- */
/* --------------------------------------------------- */
#mainHeaderInternBottomLeft {
    width: 300px;
    height: 100%;
    background-color: var(--orange);
    position: relative;
	display: flex;
	align-items: center;
}

#mainHeaderInternBottomLeft::before {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100vw;
    top: 0;
    right: 100%;
    background-color: var(--orange);
}

#mainHeaderInternBottomLeftHeadline {
	color: var(--white);
	margin: 0;
	font-size: 170%;
    font-weight: bold;
}

#mainHeaderInternBottomLeftZuSortiment {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}



@media (max-width: 1024px) {
    #mainHeaderInternBottomLeft {
        display: none;
    }
}


#mainHeaderInternShopMenue {
	display: none;
	flex-wrap: wrap;
	width: 750px;
	background-color: var(--white);
	border: 1px solid #ccc;
	position: absolute;
	top: 60px;
	left: 0;
}

#mainHeaderInternBottomLeft:hover #mainHeaderInternShopMenue {
	display: flex;
}

.mainHeaderInternShopMenueCategory {
	display: flex;
	align-items: center;
	width: 33.33%;
	height: 60px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	color: inherit;
	font-size: 16px;
}

.mainHeaderInternShopMenueCategory:nth-of-type(3n+3) {
	border-right: none;
}

.mainHeaderInternShopMenueCategory:nth-of-type(n+10) {
	border-bottom: none;
}

.mainHeaderInternShopMenueCategory:hover {
	color: inherit;
}

.mainHeaderInternShopMenueCategory img {
	margin-right: 10px;
}

@media (max-width: 1024px) {
	#mainHeaderInternBottomLeft:hover #mainHeaderInternShopMenue {
		display: none;
	}
}






/* ------------------------------------------------------ */
/* ---------- Main Header intern Kundenbereich ---------- */
/* ------------------------------------------------------ */
#mainHeaderInternBottomRight {
    width: calc(100% - 300px);
    height: 100%;
}

.mainHeaderInternBottomItem {
    padding: 0 10px;
    position: relative;
}

.mainHeaderInternBottomItem:hover {
    background-color: var(--orange);
}

@media (max-width: 1024px) {
    #mainHeaderInternBottomRight {
        height: 70px;
        width: 100px;
        position: absolute;
        right: 0;
        bottom: 40px;
    }
}


/* Links */
.mainHeaderInternBottomLink {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 90%;
    color: var(--black);
}

.mainHeaderInternBottomItem:hover .mainHeaderInternBottomLink {
    color: var(--white);
}


/* Icons */
.mainHeaderInternBottomLinkIcon {
    width: 30px;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#mainHeaderLinkKonto {
    background-image: url('/bilder/user.gif');
    margin-left: 10px;
}

.mainHeaderInternBottomItem:hover #mainHeaderLinkKonto {
    background-image: url('/bilder/user_weiss.gif');
}

#mainHeaderLinkMerkliste {
    background-image: url('/bilder/snadel_plus.gif');
}

.mainHeaderInternBottomItem:hover #mainHeaderLinkMerkliste {
    background-image: url('/bilder/snadel_back_orange.gif');
}

@media (max-width: 1024px) {
    #mainHeaderLinkKonto {
        margin-left: 0;
    }
}


/* Ausklappbares Element */
.mainHeaderInternBottomLinkMore {
    display: none;
    width: 320px;
    background-color: var(--white);
    position: absolute;
    top: 100%;
    right: 0;
}

.mainHeaderInternBotMoreHeadline {
    background-color: var(--orange);
    padding: 15px 70px;
    font-size: 24px;
    color: var(--white);
}

.mainHeaderInternBotMoreContent {
    padding: 25px 70px;
}

.mainHeaderInternBotMoreContent a {
    color: var(--black);
}

.mainHeaderInternBotMoreContent a:hover {
    font-weight: bold;
}

.mainHeaderInternBotMoreBtns {
    padding: 30px;
    padding-top: 20px;
}

.mainHeaderInternBotMoreBtn {
    width: 100%;
}


.mainHeaderInternBottomLinkMoreBg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(234,237,241,0.6);
    z-index: -1;
}

@media (min-width: 401px) {
    .mainHeaderInternBottomItem:hover .mainHeaderInternBottomLinkMore,
    .mainHeaderInternBottomItem:has(.mainHeaderInternBottomLinkMore):hover ~ .mainHeaderInternBottomLinkMoreBg {
        display: block;
    }
}/* --- --- *//* ------------------------------------------------ */
/* -------------------- Footer -------------------- */
/* ------------------------------------------------ */
footer {
	margin-top: auto;
}

#footerLeft {
    width: 20%;
    padding: 35px;
    text-align: center;
}

#footerLogo {
    width: 100%;
    max-width: 300px;
    display: inline-block;
    vertical-align: top;
}



#footerMid {
    width: 55%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: var(--black2);
    padding: 35px;
    font-size: 12px;
    line-height: 150%;
}

@media (max-width: 1700px) {
    #footerMid {
        font-size: 9px;
    }
}

#footerMid, #footerMid a {
    color: var(--white);
}

#footerMid a:hover {
    text-decoration: underline;
}

.footerMidCol {
    width: calc(60% / 3 - 20px * 3 / 4);
}

.footerMidCol:first-of-type {
    width: calc(40% - 20px * 3 / 4);
}


#footerRight {
    width: 25%;
}

#footerKarte {
    display: block;
    height: 100%;
}

#footerKarte img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}

#footerKarteDesktop {
    display: block;
}

#footerKarteMobil {
    display: none;
}


@media (max-width: 1024px) {
    #footerLeft {
        width: 30%;
    }


    #footerMid {
        width: 70%;
    }

    .footerMidCol {
        width: calc(100% / 3 - 20px * 2 / 3);
    }

    .footerMidCol:first-of-type {
        width: 100%;
    }


    #footerRight {
        width: 100%;
        min-height: 460px;
    }

    #footerKarteDesktop {
        display: none;
    }

    #footerKarteMobil {
        display: block;
    }
}

@media (max-width: 600px) {
    #footerLeft, #footerMid {
        width: 100%;
    }
}/* --- --- *//* ----------------------------------------------- */
/* -------------------- Login -------------------- */
/* ----------------------------------------------- */
#loginWrapper {
    position: relative;
}


#loginLogo {
    width: 300px;
    position: absolute;
    top: 25px;
    right: 10px;
}

@media (max-width: 1024px) {
    #loginLogo {
        display: none;
    }
}


#loginBackgroundWrapper {
    width: 55%;
    color: var(--white);
}

#loginBackgroundOrange {
    height: 630px;
    background-color: var(--orange);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#loginBackgroundGray {
    height: 70px;
    background-color: var(--gray);
}

#loginHeadline {
    font-weight: normal;
    margin-bottom: 0px;
    margin-top: 150px;
}

@media (max-width: 600px) {
    #loginBackgroundWrapper {
        width: 75%;
    }

    #loginBackgroundOrange {
        height: 580px;
    }

    #loginHeadline {
        font-size: 150%;
        margin-top: 120px;
    }
}


#loginBox {
    width: 100%;
    max-width: 500px;
    padding: 30px 40px;
    background-color: var(--white);
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#loginName, #loginPwd {
    height: 46px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    width: 100%;
    border: none;
    background-color: var(--gray9);
    margin-top: 5px;
    margin-bottom: 10px;
}


#loginBtnWrapper {
    gap: 10px;
}

.loginBtn {
    width: calc(50% - 10px / 2);
    height: 41px !important;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .loginBtn {
        width: 100%;
    }
}/* --- --- */