/* ---------- SASS ---------- */
/* ---------- ROOT ---------- */
:root {
    --c-orange: #F39200;
    --c-orange-rgb: 243,146,0;

    --c-white: #FFFFFF;
    --c-white-rgb: 255,255,255;
}
/* ---------- ORANGE ---------- */
.text-c-orange,
.text-h-c-rot :is(h1, h2, h3, h4, h5, h6) {
    color: rgba(var(--c-orange-rgb), 1) !important;
}
.bg-c-orange {
    background-color: rgba(var(--c-orange-rgb), 1) !important;
}
.bg-c-orange-trans {
    background-color: rgba(var(--c-orange-rgb), 0.9) !important;
}
.border-c-orange {
    border-color: rgba(var(--c-orange-rgb), 1) !important;
}
.verlauf-c-orange {
    background: linear-gradient(to right, rgba(var(--c-orange-rgb), 1) 0%, rgba(var(--c-orange-rgb), 0.75) 100%);
}
.btn-c-orange {
    background-color: rgba(var(--c-orange-rgb), 1) !important;
    color: #fff !important;
    border: none;
}
.btn-c-orange:hover {
    background-color: rgba(var(--c-orange-rgb), 0.8) !important;
}
.btn-c-orange:focus,
.btn-c-orange:active {
    background-color: rgba(var(--c-orange-rgb), 0.9) !important;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(var(--c-orange-rgb), 0.4);
}
.btn-c-orange:disabled {
    background-color: rgba(var(--c-orange-rgb), 0.5) !important;
    opacity: 0.65;
    cursor: not-allowed;
}


/* ELEMENTE */
.kontakt #navAp a.active {
    font-weight: bold;
}


/* MODULE */
.collapsible .eintrag .fa-plus,
.collapsible .eintrag .fa-chevron-down {
    display: inline-block;
}
.collapsible .eintrag[aria-expanded="true"] .fa-plus,
.collapsible .eintrag[aria-expanded="true"] .fa-chevron-down {
    display: none;
}
.collapsible .eintrag .fa-minus,
.collapsible .eintrag .fa-chevron-up {
    display: none;
}
.collapsible .eintrag[aria-expanded="true"] .fa-minus,
.collapsible .eintrag[aria-expanded="true"] .fa-chevron-up {
    display: inline-block;
}


/* OPENER */
.opener {
    min-height: 25rem;
}
.opener::before {
    content: "";
    position: absolute;
    inset: 0;            /* cover the whole box */
    pointer-events: none;
    z-index: 1;
    background:
    url("../images/elm_opener-top.svg") 90% 0% / 1.5px no-repeat,
    url("../images/elm_opener-right.svg") 100% 70% / 121px no-repeat,
    url("../images/elm_opener-bottom.svg") 80% 100% / 185px no-repeat;
}
.opener::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1 !important;
}
.opener h1 {
    color: rgba(0,0,0,1)
}
.opener.home {
    min-height: 70vh;
}
@media (max-width: 991px) {

}


/* STARTSEITE */

@media (max-width: 991px) {

}



/* SITEMAP */
.sitemap ul {
    margin: 0;
    padding: 1rem 0 1rem 1rem;
    list-style-type: none;
    background-color: rgba(0,0,0,0.05);
}
.sitemap ul a {
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 3rem;
}
.sitemap ul ul a {
    font-size: 1.1rem;
    line-height: 2rem;
}
.sitemap ul ul ul a {
    font-size: 1rem;
    line-height: 1.8rem;
}
@media (max-width: 991px) {
}


/* FOOTER */
footer {
    box-shadow: 0 -4px 12px rgba(0,0,0,.15) !important;
}
@media (max-width: 991px) {
}

/* HEADER */
.navbar {
    filter: drop-shadow(-3px 5px 2px rgba(0,0,0,0.1));
    /* box-shadow: -3px 5px 2px rgba(0,0,0,0.1); */
}
.navbar img.logo {
    height: 3rem;
    width: auto;
}
.navbar a.nav-link,
.navbar a.dropdown-item {
    color: rgba(0,0,0,1);
}
.navbar a.dropdown-item:hover {
    background-color: rgba(0,0,0,0.1);
}
.navbar a.lang:hover,
.navbar a.konfigurator:hover {
    opacity: 0.5;
}


.modal-backdrop {
    z-index: 90 !important;
    background-color: rgba(0,0,0,0.75);
}
.modal-backdrop.show {
    opacity: 1;
}
.modal {
    z-index: 500 !important;
}
.modal-content {
    background-color: rgba(255,255,255,1);
    border: none;
    border-radius: 0;
    padding: 20px 20px 0 20px;
}
.modal-content .close {
    float: none;
}
.modal-header,
.modal-footer {
    justify-content: center !important;
}
@media (max-width: 991px) {
}