:root {
    --color-text-dark: rgba(0, 0, 0, 0.75);
    --color-text-light: #fff;
    --color-border-light: rgba(0, 0, 0, 0.03);
    --color-border-dark: rgba(0, 0, 0, 0.09);
    --color-shadow-light: rgba(0, 0, 0, 0.09);
    --color-shadow-mid: rgba(0, 0, 0, 0.11);
    --color-shadow-strong: rgba(0, 0, 0, 0.17);

    --shadow-card: 0 6px 34px var(--color-shadow-light),
        0 3px 6px -3px var(--color-shadow-mid);
    --shadow-button: 0 3px 7px var(--color-shadow-strong);
    --shadow-common: inset 0 15px 53px 0 rgba(255, 255, 255, 0.05), inset 0 21px 43px 0 rgba(0, 0, 0, 0.07), inset 0 1px 1px -1px rgba(255, 255, 255, 0.50), inset 0 -1px 1px -1px rgba(255, 255, 255, 0.50), inset 0 -8px 13px -3px rgba(255, 255, 255, 0.08);

    --radius-lg: 16pt;
    --radius-md: 14pt;
    --radius-sm: 11pt;

    --cursor-default: url("img/cursor.svg"), auto;
    --cursor-hand: url("img/hand cursor.svg"), auto;
    --cursor-zoom: url("img/picture zoom.svg"), auto;

    --gradient-dark: linear-gradient(180deg, #272727 0%, #020202 100%, #0B0B0B 100%);
    --gradient-dark-hover: linear-gradient(180deg, #383B3B 0%, #161919 100%, #161919 100%);
}



#filterRowContainer {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    /* position: fixed; */
    z-index: 10000000;
    margin-top: 18pt;
    margin-bottom: 6pt;
    view-transition-name: filterRow;
}

#filterRowContents {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;

    height: 76px;
    width: fit-content;
    position: relative;
    padding: 0;

    max-width: calc(100vw - 48px);
}

#filterRowContents::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    mask-border: url("img/mask@2x.png") 49% fill / 38px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: inset 0 -3px 3px -1px rgba(255, 255, 255, 0.3), inset 0 2px 7px -1px rgba(255, 255, 255, 0.5), inset 0 -12px 43px -3px rgba(0, 0, 0, 0.04);
    background-size: cover;
    background-position: center;
    will-change: auto;
    backdrop-filter: blur(45px) saturate(200%) brightness(105%);
    z-index: -1;
}

#filterRowContents::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 34px rgba(0, 0, 0, 0.09), 0 3px 6px -3px rgba(0, 0, 0, 0.11);
    background-size: cover;
    background-position: center;
    z-index: -3;
}


.headerLinkTitle {
    text-wrap: nowrap;
}

#filterRowButtons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0px 12px;

    overflow-x: scroll;
    height: 100%;

    mask-border: url("img/mask@2x.png") 49% fill / 38px;
}