
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cd-top {
    display: inline-block;
    height: 52px;
    width: 52px;
    border-radius: 100px;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: url('https://carolabruecke-dresden.com/backtotop/images/arrow-up.svg') no-repeat center;
    background-size: 50%;
    background-color: var(--lime, #c6f954);
    filter: brightness(1);
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, visibility 0s .3s, background-color .3s, filter .3s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out {
    transition: opacity .3s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 0.85;
}

.cd-top.cd-fade-out {
    opacity: 0.85;
}

.cd-top:hover {
    opacity: 1;
    filter: brightness(0.85);
}

@media only screen and (min-width: 768px) {
    .cd-top {
        bottom: 2rem;
        height: 56px;
        width: 56px;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-top {
        bottom: 2.5rem;
        height: 60px;
        width: 60px;
    }
}