:root {
    --background-bar-width: 930px;
}

.profile-background-bar .profile-card {
    background: transparent;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-background-bar .profile-header .profile-card {
    backdrop-filter: none;
    border: none;
}

div.profile-background-bar.profile-background {
    display: block;
    z-index: 8;
    background-image: none !important;
    opacity: 0.8;
    filter: none;
}

.profile-background-bar .profile-extras {
    position: relative; /* For mozilla */
}

/* Blur background at middle all the way down  */
#main-container div.profile-background-bar.profile-background:before,
.profile-background-bar .profile-extras:before {
    padding: 0;
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

#main-container div.profile-background-bar.profile-background:before {
    max-width: var(--background-bar-width);
    left: max(calc(calc(100% - var(--background-bar-width)) / 2), 0px);
}

.profile-background-bar .profile-extras:before {
    left: 0;
    top: 0;
    border-radius: var(--redsun-profile-border-radius);
}