a.anchor{
    display:block;
    position: relative;
    top: -95px;
    visibility: hidden;
}

.submit{
    margin-left: 10px;
}
@media (max-width: 1200px) {
    .search-bar {
        display: none !important;
    }
}
.checkmark:after{
    top: -3px
}

.accordeon .accordeon__content a{
    background-color: transparent;
    display:inline;
    padding:0px;
}

.btn-back-to-top{
    position:fixed;
    bottom: -50px;
    right: 15px;
    background-color: #000000;
    color:#ffffff;
    width:50px;
    height:50px;
    line-height:50px;
    text-align: center;
    padding: 0;
    min-width: 1px;
    transition: all 0.35s ease-in-out;
    z-index:1000;
}
.btn-back-to-top.is-shown{
    bottom:15px;
}

i, em {
    font-style: italic;
}
strong, b {
    font-weight: bolder;
}

.marquee {
    max-width: 100vw; /* iOS braucht das */
    white-space: nowrap;
    overflow: hidden;
    background-color: #c7014c;
    color: #ffffff;
}
.marquee > div {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 40s linear infinite;
}
.marquee a {
    color: #ffffff;
}
.marquee > div:hover {
    animation-play-state: paused
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
