@charset "UTF-8";

/* Embed Font */
@font-face {
    font-family: 'Inter';
    src: url("/assets/InterVariable-884c49a1.woff2") format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/*===============================
Custom properties
===============================*/
:root {
    --color-white: white;
    --color-black: black;
    --color-blue: blue;
    --color-red: #eb0000;
    --color-gray: rgba(122,122,122,1.00);
    --color-gray-dark: rgba(35,35,35,1.00);
    --color-gray-darker: rgba(37,37,37,1.00);
}

svg {
    pointer-events: none;
}

.details-section h2 {
    font-size: 20px;
    font-weight: 430;
}

/* Submission form */

#submission li.input:has(+ .example) {
    margin-bottom: 0;
}

#submission details p {
    margin: 1rem 0;
}

#submission .inline-hints {
    font-size: smaller;
}

#submission input[type=submit] {
    margin-top: 1rem;
    padding: 0.5rem 4rem;
    font-weight: 400;
}

#submission .footnote {
    margin-top: 4rem;
    font-size: smaller;
}

/* General helpers */

.visually-hidden:not(:focus):not(:active) {
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* Rolodex (the letters register) */

.rolodex-letters ul li, .rolodex-leads ul li, .rolodex-ipgs ul li {
    display: inline-block;
    margin: 0.2rem 0.5rem;
}

/* Temporary, just to move the new search box into view */
#search {
    margin-top: 3rem;
}

/* Temp - Debug Containers */
/*body, section, main, div, header, footer {*/
/*    outline: 1px solid red;*/
/*}*/

/* General Settings und Typo */
html {
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, sans-serif;
    letter-spacing: 0.01em;
    font-size: 20px;
    font-weight: 320;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0 1.5%;
    padding: 0;
}

main, .trix-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    main, .trix-content {
        padding-bottom: 70px;
    }
    .trix-content figure {
        margin: 0;
    }
    .trix-content a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .trix-content  a[href^="mailto:"] {
        white-space: nowrap;
        word-break: keep-all;
    }
}

.trix-content {
    width: 60%;
}

@media (max-width: 1200px) {
    .trix-content {
        width: 75%;
    }
}

@media (max-width: 1024px) {
    .trix-content {
        width: 100%;
    }
}

/* Typo allgemein */
b, bold, strong {
    font-weight: 430;
}

ul, ul li {
    padding-inline-start: 0;
    list-style: none;
}

.trix-content p {
    margin-block-end: 1em;
}

/* Header und Nav */
header {
    display: flex;
    align-items: center;
    align-content: space-between;
    flex-wrap: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    width: 97%;
    padding-left: 1.5%;
    padding-right: 1.5%;
    height: 50px;
    z-index: 20;
}

#menu-button {
    position: fixed;
    top: 13px;
    right: 1.5%;
    z-index: 1000;
    background: white;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.menu-toggle-open, .menu-toggle-close {
    display: none;
}

button[aria-expanded=false] > .menu-toggle-open,
button[aria-expanded=true] > .menu-toggle-close,
button[aria-expanded=true] + nav {
    display: block;
}

#header-q {
    display: block;
    flex: auto;
}

#header-q h1 {
    font-size: 20px;
    font-weight: 420;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    align-content: center;
}

nav {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    background: white;
    height: 50vh;
    height: 50dvh;
    width: 200px;
    max-width: 50%;
    padding: 15px;
    margin: 0;
    z-index: 30;
    border: 1px solid red;
}

@media screen and (max-width: 768px) {
    nav {
        height: 100vh;
        height: 100dvh;
        width: 97%;
        max-width: 97%;
        border: 0px solid red;
    }
}

nav menu {
    margin-top:0;
    padding-top: 0;
    margin-block-start:0;
}

nav menu li:first-child {
    margin-top:0;
    padding-top: 2px;
    padding-bottom: 16px;
    margin-block-start:0;
}

nav > menu:first-child {
    flex-grow: 1;
}

menu {
    display: block;
    padding: 0;
    gap: 0.4rem;
    margin-top: 30px;
}

menu li {
    list-style: none;
    padding: 8px 16px;
    font-size: 18px;
    color: var(--color-black);
    width: 100%;
}

menu li a, menu li a:active, menu li a:visited {
    color: var(--color-black);
    text-decoration: none;
}

menu li a:hover {
    color: var(--color-gray);
    text-decoration: none;
}

#language-menu {
    position: fixed;
    top: 14px;
    right: 80px;
    margin: 0;
    padding: 0;
    z-index: 1000;
}

@media (max-width: 1024px) {
    #language-menu {
        right: 65px;
    }
}

@media (max-width: 768px) {
    #language-menu {
        right: 10%;
    }
    #language-menu li {
        font-size: 16px;
    }
}

#language-menu li {
    padding: 0;
    margin: 0;
    width: auto;
}

/* footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: fixed;
    bottom: 0;
    left: 0;
    height: auto;
    z-index: 8;
    box-sizing: border-box;
    width: 100%;
    padding-left: 1.5%;
    padding-right: 1.5%;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 18px;
    letter-spacing: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.logo {
    height: 15px;
    width: auto;
}

.footer-0 {
    display: flex;
}

.footer-1 {
    display: flex;
    align-items: center;
    /* gap: 20px;  Abstand zwischen Logo und Text */
    margin-left: 25px;
}

.footer-2 {
    align-items: center;
    margin-left: 30px;
    display: none;
}

.footer-3 {
    margin-left: auto;
    text-align: right;
}
.footer-4 {
    display: none;
    margin-left: auto;
    text-align: right;
}

.under-construction,
.under-construction:hover,
.under-construction:active {
    color: var(--color-red);
    text-decoration: none;
}

.footer-logo,
.footer-logo:hover,
.footer-logo:active {
    color: var(--color-black);
    text-decoration: none;
}

@media screen and (min-width: 1175px) {
    .footer-2 {
        display: flex;
    }
}

@media screen and (max-width: 767px) {

    .footer-1 {
        margin-left: 20px
    }
    .footer-3 {
        display: none;
    }
    .footer-4 {
        display: flex;
        letter-spacing: -0.035em;
    }
    .footer {
        font-size: 16px;
    }
}

@media screen and (max-width: 400px) {

    .footer-1 {
        margin-left: 10px
    }

    .footer-4 {
        display: flex;
        letter-spacing: -0.035em;
    }
    .footer {
        font-size: 14px;
    }
}

@media screen and (max-width: 300px) {

    .footer-4 {
        display: none;
    }

}


/* Abschnitt Objektsuche - Startseite */
#startseite #suche {
    position: fixed;
    top: 40px;
    left: 1.5%;
    width: 97%;
    padding-left: 0;
    padding-bottom: 1.3em;
    background: white;
    z-index: 20;
}

#startseite #suche p {
    margin-block-start: 0;
    margin-block-end: .55rem;
}

#startseite #search-box {
    width: 55%;
}

#startseite #search-box input {
    width: 100%;
    padding-right: 50px; /* rechts Platz für Button */
}

#startseite #search-box button {
    position: absolute;
    top: 65%;
    right: 14px;
    transform: translateY(-50%);
}

@media (max-width: 1024px) {
    #startseite #search-box {
        width: 100%;
        height: 30px;
    }

    #startseite #search-box input {
        width: 100%;
        padding: 9px 50px 9px 16px; /* rechts Platz für Button */
        box-shadow: rgba(207, 207, 207, 0.75) 0px 0px 12px 5px inset;
    }

    #startseite #search-box button {
        top: 70%;
    }
}

@media (max-width: 768px) {

    #startseite #suche p {
        margin-block-end: .5rem;
    }
    #startseite #search-box {
        width: 100%;
        height: 28px;
    }
    #startseite #search-box input {
        padding: 7px 50px 7px 16px;
        box-shadow: rgba(207, 207, 207, 0.75) 0px 0px 10px 5px inset;
    }

    #startseite #search-box button {
        top: 65%;
        right: 11px;
    }

    #startseite #search-box button svg {
        width: 27px;
        height: 24px;
    }
}

/* Abschnitt Objektsuche - Ergebnisseite  */
#id-ergebnisseite #suche {
    position: fixed;
    top: 40px;
    left: 1.5%;
    width: 97%;
    padding-left: 0;
    padding-bottom: 1.3em;
    background: white;
    z-index: 20;
}

#id-ergebnisseite #suche p {
    margin-block-start: 0;
    margin-block-end: .55rem;
}

#search-box {
    position: relative;
    width: 100%;
    height: 40px;
}

#search-box button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-box button svg {
    width: 32px;
    height: 28px;
    fill: #666;
}

#search-box input[name=q] {
    font-size: 20px;
    text-indent: 10px;
    width: 55%;
    padding: 12px 16px 12px 16px;
    box-shadow: rgba(207, 207, 207, 0.75) 0px 0px 14px 5px inset;
    border-radius: 42px;
    border-color: transparent;
}

@media (max-width: 1024px) {
    #search-box {
        width: 100%;
        height: 30px;
    }

    #search-box input[name="q"] {
        width: 100%;
        padding: 9px 50px 9px 16px; /* rechts Platz für Button */
        box-shadow: rgba(207, 207, 207, 0.75) 0px 0px 12px 5px inset;
    }
}

@media (max-width: 768px) {

    #id-ergebnisseite #suche p {
        margin-block-end: .5rem;
    }
    #search-box {
        width: 100%;
        height: 28px;
    }
    #search-box button svg {
        width: 27px;
        height: 24px;
    }
    #search-box input[name=q] {
        padding: 7px 50px 7px 16px;
        box-shadow: rgba(207, 207, 207, 0.75) 0px 0px 10px 5px inset;
        font-size: 16px;
        text-indent: 0px;
    }
}

/* Ergebnisseite Objektsuche */
#id-ergebnisseite { /* vergrösserter Abstand nach oben wg Such- und Filterfeld */
    padding-top: 120px;
}

/* Ergebnistabelle Objekte Filter*/
#id-ergebnisseite #filter {
    display: flex;
    align-items: center;
    background: white;
    margin: 0;
    padding-bottom: 6px;
    padding-top: 8px;
    font-size: 18px;
    font-weight: 430;
}

#id-ergebnisseite .group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#id-ergebnisseite select {
    font-family: Inter;
    font-size: 16px;
    font-weight: 320;
    border: 0px;
    background-color: var(--color-white);
    color: var(--color-black);
}

#id-ergebnisseite #filter li {
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    white-space: nowrap;
    width: auto;
}

#id-ergebnisseite li.holdings {
    text-transform: uppercase;
}

#id-ergebnisseite input[name="since"],
#id-ergebnisseite input[name="until"] {
    width: 50px;
    height: fit-content;
    font-size: 16px;
    font-family: 'Inter';
    text-align: center;
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    background: transparent;
    padding: 2px 4px;
}

#id-ergebnisseite .group-left, #id-ergebnisseite .group-center {
    margin-right: 60px;
}

#id-ergebnisseite .group-filter-reset {
    margin-left: 60px;
}

#id-ergebnisseite .group-arrow {
    margin-left: 20px;
}

#id-ergebnisseite .group-filter-reset a, #id-ergebnisseite .group-filter-reset a:hover, #id-ergebnisseite .group-filter-reset a:active, #id-ergebnisseite .group-filter-reset a:visited{
    color: var(--color-red);
    letter-spacing: -0.025rem;
    text-decoration: none;
}

#id-ergebnisseite .spacer, #id-ergebnisseite .spacer-arrow {
    margin-left: auto;
}

@media (max-width: 1420px) {

    #id-ergebnisseite main {
        padding-top: 80px;
    }

    #id-ergebnisseite #filter {
        flex-wrap: wrap;
    }

    #id-ergebnisseite .group-right {
        order: 1;
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 8px;
    }

    #id-ergebnisseite .group-left, #id-ergebnisseite .group-center {
        order: 2;
        margin-bottom: 8px;
    }

    #id-ergebnisseite .group-filter-reset {
        order: 4;
        margin-left: auto;
    }

    #id-ergebnisseite .group-filter-reset a {
        margin-left: auto;
    }

    #id-ergebnisseite .group-arrow {
        display: block;
        position: fixed;
        right: 1.5%;
        top: 130px;
    }

    #id-ergebnisseite .spacer {
        display: none;
    }
}

@media (max-width: 1024px) {

    body:has(.group-filter-reset) #object-table-wrapper {
        padding-top: 20px;
    }
    #id-ergebnisseite .group-arrow {
        top: 126px;
    }
}

@media (max-width: 865px) {

    #id-ergebnisseite main {
        padding-top: 55px;
    }
    #id-ergebnisseite #filter {
        font-size: 16px;  }

    #id-ergebnisseite .group-right {
        margin-bottom: 6px;
    }

    #id-ergebnisseite .group-left, #id-ergebnisseite .group-center {
        margin-bottom: 0;
    }
}

@media (max-width: 820px) {

    #id-ergebnisseite .group-right {
        order: 1;
    }

    #id-ergebnisseite .group-left {
        order: 2;
        margin-right: 30px;
    }

    #id-ergebnisseite .group-filter-reset {
        order: 3;}

    #id-ergebnisseite .group-center {
        order: 4;
        width: 50%;
    }
}

@media (max-width: 768px) {
    #id-ergebnisseite .group-arrow {
        top: 115px;
    }
}

@media (max-width: 700px) {

    #id-ergebnisseite .group-left {
        margin-right: 20px;
    }
    #id-ergebnisseite .group-center {
        width: unset;
    }
}
@media (max-width: 630px) {

    #id-ergebnisseite main {
        padding-top: 80px;
    }
}

@media (max-width: 520px) {

    #id-ergebnisseite select {
        font-size: 14px;
    }

    #id-ergebnisseite .group-filter-reset {
        order: 4;}

    #id-ergebnisseite .group-center {
        order: 3;
        margin-right: 20px;
    }
}

@media (max-width: 445px) {


    #id-ergebnisseite .group-center {
        margin-bottom: 4px;
    }
    #id-ergebnisseite .group-filter-reset {
        margin-left: 0;
    }
}

@media (max-width: 400px) {

    #id-ergebnisseite select {
        font-size: 12px;
    }
}

@media (max-width: 375px) {

    #id-ergebnisseite #filter {
        display: none;
    }

    #id-ergebnisseite main {
        padding-top: 0;
    }
}
/* Ende Filter */

/* Tabelle */

#object-table {
    width: 100%;
    letter-spacing: 0;
}

#object-table tr {
    display: grid;
    grid-template-columns: 7fr 3fr 80px 8fr;
}

#object-table th,
#object-table td {
    padding: 9px 11px;
    text-align: left;
    vertical-align: top;
    overflow-wrap: break-word;
}

#object-table td:first-of-type {
    padding-left: 0;
}
#object-table td:nth-child(4) {
    padding-right: 0;
}

@media (max-width: 1023px) {
    #object-table td {
        padding: 7px 9px;
        font-size: 16px;
    }

    #object-table tr td:nth-child(4) {
        display: none;
    }

    #object-table tr {
        grid-template-columns: 13fr 7fr 70px;
    }

    #object-table tr td:nth-child(3) {
        text-align: right;
    }
}


@media (max-width: 668px) {
    #object-table tr td:nth-child(2) {
        display: none;
    }
    #object-table tr {
        grid-template-columns: 1fr 70px;
    }
}

#object-table .exhibitions  {
    margin: 0;
}

#object-table .exhibitions li {
    display: none;
    margin-block-end: 3px;
}

#object-table .exhibitions li:nth-child(-n+10) {
    display: block;
}

#object-table .exhibitions li:nth-child(10):after {
    content: '\a' '...';
    white-space: pre;
    color: var(--color-gray-darker);
}

#pagination  {
    font-size: 16px;
}

#pagination a {
    color: var(--color-gray-dark);
}

#pagination a:hover, #pagination a:active {
    color: var(--color-gray);
}


/* Objektseite */
/* css für js sticky/scroll */
.sticky-section {
    position: sticky;
    top: 0px; /* Abstand  von oben */
    background: white;
    width: 100%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 8px;
}

/* h1 Standardzustand */
.sticky-title {
    color: var(--color-black);
    text-decoration: none;
    cursor: default;
    transition: all 0.3s ease;
}

/* Zustand h1 sticky*/
.sticky-section.is-sticky .sticky-title {
    color: var(--color-blue);
    text-decoration: underline;
    cursor: pointer;
}

#object-detail .sticky-section p {
    margin-top: 0;
}

@media (max-width: 768px) {
    .sticky-section {
        position: unset;
    }
}
/* ENDE sticky/scroll/js */

/* Layout Objektseite */
#object-detail header {
    display: none;
}
@media (max-width: 768px) {
    #object-detail header {
        display: unset;
    }
    #object-detail #header-q h1 {
        display: none;
    }
}
#x-button {
    position: fixed;
    top: 40px;
    right: 37px;
    z-index: 20;
    background: white;
}

@media screen and (max-width: 1024px) {
    #x-button {
        top: 40px;
        right: 15px;
        background: white;
    }
}

@media screen and (max-width: 768px) {
    #x-button {
        top: 40px;
        right: 5px;
        background: white;
    }
    #x-button svg {
        width: 32px;
        height: 32px;
        background: white;
    }
}

#object-detail main {
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 40px;
}

@media screen and (max-width: 1024px) {
    #object-detail main {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    #object-detail main {
        padding-left: 8px;
        padding-right: 8px;
    }
}
#object-detail section {
    max-width: 50%;
    padding: 0 0 0 0;
    margin-top: 1rem;
    border: 0px;
}

#object-detail #basics {
    max-width: 30%;
    margin-top: 1.8rem;
}

#object-detail #exhibitions {
    margin-block-start: 1.5rem;
    max-width: 75%;
}

#object-detail #modified {
    margin-top: 1.5rem;
}

/* Details Title */
.details-title  {
    margin-top: 0;
    margin-bottom: 1rem;
}

.details-title p {
    max-width: 50%;
    font-size: 18px;
    margin-bottom: 5px;
}

.details-title h1 {
    font-size: 30px;
    font-weight: 490;
    margin-top: 0;
    max-width: 60%;
}

.details-title h1:has(+ p) {
    margin-bottom: .4rem;
}

.details-title p:first-of-type {
    font-style: italic;
}

@media screen and (max-width: 1023px) {
    section, #exhibitions, .details-title p {
        max-width: 100%;
    }

    .details-title h1 {
        max-width: 90%;
    }

    #basics {
        max-width: 75%;
    }
}

@media screen and (max-width: 768px) {
    .details-title h1 {
        max-width: 95%;
        font-size: 26px;
    }
}

#object-detail figcaption {
    font-size: 16px;
    font-style: italic;
}

#object-detail #basics ul {
    margin-block-start: 5px;
    margin-block-end: 5px;
    padding-inline-start: 0;
}

#object-detail #contains ul, #object-detail #contained-in ul {
    margin-block-start: 6px;
    margin-block-end: 5px;
    padding-inline-start: 0;
}

#object-detail #contains ul li, #object-detail #contained-in ul li {
    margin-block-end: 4px;
}

#object-detail #exhibitions ul li {
    margin-block-end: 13px;
}

#object-detail #exhibitions ul {
    margin-block-start: 13px;
}

#object-detail section p {
    margin-block-start: 0;
    margin-block-end: 5px;
    line-height: 1.3;
    z-index: 21;
}

#object-detail #modified p {
    font-size: 16px;
}

/* BILDER */
#object-detail figure {
    display: inline-block;
}

#object-detail figure img {
    max-width: 100%;
    height: auto;
}

#object-detail figcaption {
    max-width: 210px;
}

#object-detail figcaption .filetype {
    white-space: nowrap;
}

#object-detail figure svg {
    width: 19px;
    height: auto;
    vertical-align: -4px;
    padding-left: 2px;
}

#object-detail a:active figure svg, #object-detail a figure svg, #object-detail a:hover figure svg {
    fill: blue;
}

#object-detail a:visited figure svg {
    fill: #551A8B;
}

/* top */
#object-detail #media-files-top {
    position: relative;
    float: right;
    margin-top: 0px;
    /*padding-left: 5%;*/
    padding-bottom: 30px;
    background: white;
    max-width: 35%;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

#media-files-top figure {
    padding: 0;
    margin: 0;
    flex: 0 1 200px;
}

/* ein figure Element im Container */
#object-detail #media-files-top:has(> a):not(:has(> a + a)) {
    justify-content: center;
}

/* zwei figure Elemente im Container */
#object-detail #media-files-top:has(> a + a):not(:has(> a + a + a)) {
    justify-content: center;
}

/* drei oder mehr figure Elemente im Container */
#object-detail #media-files-top:has(> a + a + a) {
    justify-content: flex-end;
}


@media screen and (max-width: 1023px) {
    #object-detail #media-files-top {
        display: none;
    }
}

/* bottom */
#object-detail #media-files-bottom {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    float: none;
    gap: 20px;
    padding-top: 1rem;
    padding-bottom: .75rem;
    justify-content: space-between;
}

#media-files-bottom figure {
    padding: 0;
    margin: 0;
}

#object-detail #media-files-bottom figure {
    margin-left: 0;
}

@media screen and (min-width: 1024px) {
    #object-detail #media-files-bottom {
        display: none;
    }
}

@media screen and (max-width: 768px) {

    #object-detail #media-files-bottom figcaption {
        max-width: 55%;
    }

}


/* Laufschrift Startseite */
.under-construction-container {
    position: fixed;
    top: 48vh;
    left: 1.5%;
    width: 97%;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 0px;
    margin-right: 0px;
    padding-right: 0px;
}

.scrolling {
    animation: uc 25s linear infinite;
    -moz-animation: uc 25s linear infinite;
    -webkit-animation: uc 25s linear infinite;
    display: inline-block;
    font-size: 40px;
    color: var(--color-red);
    letter-spacing: 2px;
}

.mqcss {
    padding-right: 180px;
    padding-left: 20px;
}

dialog {
    position: fixed;
    border: 1px solid lightgrey;
    padding: 0.5rem;
}

button.dialog-close {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

button.dialog-close svg {
    height: 1rem;
    width: 1rem;
}

dialog figure.image-medium {
    margin: 0;
}

@-moz-keyframes uc {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes uc {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes uc {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* scroll-to-top Button */
#scroll-to-top {
    position: fixed;
    left: 50%;
    bottom: 13px;
    transform: translateX(-50%);

    width: 50px;
    height: 50px;
    border-radius: 50%;

    border: 1px solid black;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    text-decoration: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 999;
}

/* Effekt wenn aktiv */
.scroll-to-top:active {
    transform: translateX(-50%) scale(0.96);
}

/* Sichtbar */
#scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

/* SVG */
#scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: #000;
}

/* Nur auf Mobile/Tablet */
@media (min-width: 769px) {
    #scroll-to-top {
        display: none;
    }
}
