#overlay {
    background: rgba(0,0,0,0.9);
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;

    backdrop-filter: blur(10px);
    overflow: hidden;

    /*display: block;

     */
    opacity: 1;
}

.report-page-button {
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.75rem;
    margin: 0.5rem;
    transition: all 200ms;
}

.report-page-button {
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.75rem;
    margin: 0.5rem;
    transition: all 200ms;
}

.report-page-button:hover {
    border-color: rgb(90, 196, 230);
}








.accordion-item {
    position: relative;
    overflow: hidden;
    background: #020617;
}

.accordion-item::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
            radial-gradient(
                    ellipse 70% 300% at center,
                    #1452ff 0%,
                    #0b35d1 25%,
                    #06279e 40%,
                    transparent 70%
            );

    background-size: 200% 100%;
    background-position: 0% 50%;

    animation: gradientMove 30s ease-in-out infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}