body {
    background: var(--audija-gradient-dark);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-gradient {
    background: var(--audija-gradient-dark);
    color: var(--mdb-light);
}

.bg-primary {
    background: var(--audija-bg) !important;
    color: var(--mdb-light) !important;
}

.bg-primary > * {
    color: var(--mdb-light) !important;
}

.bg-secondary {
    background: var(--mdb-secondary) !important;
}

.bg-dark {
    background: var(--mdb-dark) !important;
}

.bg-audija-dark {
    background: var(--audija-dark) !important;
}

.bg-dark-transparent {
    background: var(--mdb-dark-transparent) !important;
}

.bg-info {
    background: var(--audija-gradient-turkis) !important;
}

.bg-gradient-blue {
    background: var(--audija-gradient-blue) !important;
}

.bg-gradient-turkis {
    background: var(--audija-gradient-turkis) !important;
}

.bg-darker {
    background: var(--audija-darker) !important;
}

.bg-purple-light {
    background: var(--audija-purple-light) !important;
}

.bg-hover-feature {
    background: var(--audija-hover-feature);
}

.bg-glass {
    background: hsla(0, 0%, 100%, 0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Force GPU acceleration */
    /* https://graffino.com/til/CjT2jrcLHP-how-to-fix-filter-blur-performance-issue-in-safari */
    transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.bg-glass-dark {
    background: hsla(0, 0%, 0%, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Force GPU acceleration */
    /* https://graffino.com/til/CjT2jrcLHP-how-to-fix-filter-blur-performance-issue-in-safari */
    transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.bg-glass-white {
    background: hsla(0, 0%, 100%, 0.07);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    /* Force GPU acceleration */
    /* https://graffino.com/til/CjT2jrcLHP-how-to-fix-filter-blur-performance-issue-in-safari */
    transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.bg-alert-success-gradient {
    background: var(--audija-gradient-success);
}

.bg-alert-success-gradient .fa-check {
    color: #00A3D4 !important;
}

.bg-alert-danger-gradient {
    background: var(--audija-gradient-danger);
}

nav.navbar {
    background: var(--audija-gradient-nav);
}

.gradient-border {
    position: relative;
}

.gradient-border::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(-133deg, #0AD70A, #308BC0, #5307FF);
    background-size: 200% 200%;
    animation: gradient 2s linear infinite alternate-reverse;
    border-radius: 22px;
    background-clip: padding-box, border-box;
    box-decoration-break: clone;
}

.gradient-border > * {
    position: relative;
    z-index: 3;
    background: var(--audija-bg);
    color: var(--mdb-light);
    border-radius: 20px;
}

/* Disable rounded borders for cookie modal. */
#cookieModal .gradient-border > *,
#cookieModal .gradient-border::before {
    border-radius: 0 !important;
}

@keyframes gradient {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

#hero-image {
    width: 100%;
    height: auto;
    z-index: 1;
}