/*
Bugfix für Cassiopeia Template so dass Menü umgebrochen wird, falls es nicht in eine Zeile passt
*/
.container-header .mod-menu {
	flex-wrap: wrap;
}
/*
Bugfix für Cassiopeia Template für Back to Top Button so dass er dauerhaft sichtbar ist
*/
.back-to-top-link {
    position: fixed;
}

/*
Bugfix für Youtube Container (Teil1) Format 16:9 = 56,25%
*/
.videobereich {
    background-color: orange;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
}
/*
Bugfix für Youtube Container (Teil2)
*/
.videoextern {
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*
Spielwiese für iframes (Webshop)
veraltet...
*/
.iframe-container {
    overflow: hidden;
    padding-top: 80%;
    position: relative;
}

.iframe-container iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}