.default-padding {
    padding: 0.6rem 2rem 0.3rem 2rem;
}
.tx-go-maps-ext {
    width: 100%;
    height: 200px;
}
html,body {
    font-size: 18px;
    background-color: transparent;
}
a {
    text-decoration: none;
    color: #98dbcc;
}
p {
    margin: 0px;
}

.language-menu {
    padding: 0.35rem;
}

.footer-language svg {
    width: 1.3rem;
    height: 1rem;
    padding: 0 0.3rem;
    preserveAspectRatio: none;
}
.container .footer-language {
    float: left;
}
.language-active {
    border: solid blue medium;
    padding-top: 0.3rem;
    transform-origin: 50% 50%;
    transform: rotate(30deg);
    display: inline-block;
}

.float-stop {
    clear:both;
    width:0px;
    height: 0px;
}

@font-face {
    font-family: 'DuererGotisch';
    font-style: normal;
    font-weight: 400;
    src: local('DuererGotisch'), /* Erst nachsehen, ob die Schrift */
        local('Duerer-Gotisch'), /* beim Besucher schon installiert ist */
        url(https://düddelei.de/typo3conf/ext/skeleton/Resources/Public/Fonts/DuererGotisch.svg) format('svg'), /* Wenn nicht, wird die Schrift vom Webserver geladen */
        url(https://düddelei.de/typo3conf/ext/skeleton/Resources/Public/Fonts/DuererGotisch.eot) format('eot'), /* Wenn nicht, wird die Schrift vom Webserver geladen */
        url(https://düddelei.de/typo3conf/ext/skeleton/Resources/Public/Fonts/DuererGotisch.woff2) format('woff2'), /* Wenn nicht, wird die Schrift vom Webserver geladen */
        url(https://düddelei.de/typo3conf/ext/skeleton/Resources/Public/Fonts/DuererGotisch.woff) format('woff');   /* Am Ende das Schlusslicht für IE11 */
}

.accordion input {
    display: none;
}

.accordion label {
    display: block;
}

.accordion .panel {
    margin: 0 auto;
    height: 0;
    overflow: hidden;
    /*background-color: white;*/
    /*line-height: 1.4;*/
    padding: 0 0px;
    box-sizing: border-box;
    transition: all 0.5s;
}

.accordion .panel .js-refresh {
    display:none;
}
.accordion input:checked ~ .panel .js-refresh {
    display:block;
}
.accordion input:checked ~ .panel {
    height: auto;
    /*color: #333;*/
    padding: 0px;
    transition: all 0.5s;
}

.button {
    padding: 0.2ch;
    border: 0.2ch solid #0649d8;
    color: #0649d8;
    border-radius: 1ch/1ch;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.button:hover {
    background: #06D85F;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: 5ch auto;
    padding: 2ch;
    color:#333;
    background: #fff;
    border-radius: 0.5ch;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.popup .close:hover {
    color: #06D85F;
}

.popup .content {
    overflow: auto;
}
