@media screen {
    a,
    a:link {
        position: relative;
        color: var(--link-color1);
        border-bottom: 1px solid;
    }

    a .link-underline,
    .link-underline a {
        border-bottom: 1px solid !important;
    }

    a:visited {
        color: var(--link-visited-color1);
    }

    a:hover, a:active, a:focus {
        color: var(--link-hover-color1);
    }

    a:has(img),
    figure a,
    #header a {
        border-bottom: none !important;
    }

    a.nonclick {
        cursor: default;
    }

    /* NAVIGATION STYLES
    ---------------------*/
    a.sprunglink:link, a.sprunglink:visited {
        position: absolute;
        top: -10000px;
        left: -10000px;
    }

    a.sprunglink:hover, a.sprunglink:active, a.sprunglink:focus {
        top: 1rem;
        left: 33px;
        height: 1.5rem;
        background-color: #ddd;
    }

    #nav-section {
        display: none;
        user-select: none;
    }

}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {

}


/* Tablet-landscape (and larger) for width 960px */
@media only screen and (min-width: 992px) {


}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1200px */
@media only screen and (min-width:1200px) {
}



/* Main top Navigation Desktop
--------------------*/
@media screen {
    .js #mainNavi {
        display: none;
    }

}

/* Main top Navigation ends
--------------------*/




/* Link-Button Query
--------------------*/
@media screen {
    button,
    form button,
    input.link-button,
    a.link-button,
    .link-button a {
        cursor: pointer;
        display: inline-block;
        user-select: none;
        background: var(--btn_bg) !important;
        color: var(--btn_color) !important;
        padding: 0.35rem 1.5rem;
        border-color: var(--bordercolor);
        border-radius: 1.5rem;
        line-height: 1.4;
        transition: var(--transition);
        margin-top: 0.5rem;
        font-style: normal;
        white-space: nowrap;
        font-size: var(--text-font-size);
        bottom: 0;
        position: relative;
    }

    button:hover,
    form button:hover,
    input.link-button:hover,
    a.link-button:hover,
    .link-button a:hover {
        background: var(--btn_hover_bg) !important;
        color: var(--btn_hover_color) !important;
        border-color: var(--bordercolorHover);
    } 


    .link-back {   
        display: inline-block;
        margin-top: 1.5rem;
    }

    .link-back a {        
        position: relative;
        font-weight: 800;
        border-bottom: 0;
        line-height: 2rem;
        font-size: var(--text-font-size);
    }

    .link-back a:before {
        content: "";
        display: inline-block;
        float: left;
        width: 2rem;
        height: 2rem;
        color: #fff;
        border-radius: 1rem;
        margin-right: 10px;
        text-align: center;
        background-color: var(--theme-red);
        background-image: url(../images/icons/arrow-left.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }


}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
}


/* Tablet-landscape (and larger) for width 992px */
@media only screen and (min-width: 992px) {
   
    form button,
    a.link-button,
    .link-button a {
        padding: 0.45rem 2rem;
    }
}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* Link-Button ends
--------------------*/


/* Menu Content (win-wernli-pur)
--------------------*/
@media screen {
    #menuContent {
        display: none;
        font-weight: 800;
        width: 80vw;
    }
    #menuContent .close {
        display: block;
        position: absolute;
        top: -2rem;
        right: 0;
        width: 2rem;
        height: 2rem;
        z-index: 1;
        text-align: center;
        border-radius: 1rem;
        color: #fff;
        background-color: var(--theme-red);
        cursor: pointer;
    }

    #menuContent .close:hover {
        background-color: #8d0013;
    }

    #menuContent_wrapper {
        background: #fff;
    }

    #menuContent_wrapper #menuContent {
        margin-top: 150px;    
    }

    #menuContent .ce_text ul li:before {
        display: none;
    }

    #menuContent .ce_text ul li {
        list-style-type: none;
        font-weight: 800;
        margin-bottom: 1rem;
        display: inline-block;
    }

    #menuContent_wrapper #menuContent li {
        display: block;  
        text-align: center;
    }

    #menuContent p {
        margin-bottom: 1rem;
    }

    #menuContent a {
        border: none !important;
        color: #000;
    }

    #menuContent a:hover {
        color: var(--link-hover-color1);
    }    
}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
    #menuContent_wrapper #menuContent {
        margin-top: 20vh;
    }


    #menuContent_wrapper #menuContent .mod_social_media_link {
        margin-top: 5rem;
    }    
}


/* Tablet-landscape (and larger) for width 992px */
@media only screen and (min-width: 992px) {
    #menuContent {
        position: absolute;
        bottom: 0;
        display: none;
    }

    #menuContent .close {
        line-height: 1.2;
    }

    #menuContent * {
        margin-bottom: 0;
    }


}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* Menu Content ends
--------------------*/