.visor {
    display: none;
    margin-top: 10%;
    width: 750px;
    height: 500px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.visor_animacao-ligar {
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 0;
    justify-content: center;
    align-items: center;
    pointer-events: none
}

.visor_filtros {
    position: absolute;
    height: inherit;
    width: inherit;
    overflow: hidden;
    z-index: 1;
    pointer-events: none
}

.visor_filtros * {
    position: absolute;
    height: 100%;
    width: 100%;
}

.visor_filtros .scanlines{
    opacity: 55%;
    width: 1100px !important;
    height: 190% !important;
}

.ball {
    background: var(--terminalGreen);
    border-radius: 100%;
    z-index: 1;
    width: 40px;
    height: 45px;
    box-shadow: 0px 0px 27px 22px var(--terminalGreen);

}

.appear {
    animation: 1.5s ball_appear linear;
    animation-fill-mode: forwards;
}

@keyframes ball_appear {
    0% {
        box-shadow: 0px 0px 0px 0px var(--terminalGreen);
        opacity: 0%;
        width: 0px;
        height: 0px;
    }

    10% {
        box-shadow: 0px 0px 27px 22px var(--terminalGreen);
        opacity: 100%;
        width: 40px;
        height: 45px;
    }

    30% {
        opacity: 100%;
    }

    50% {
        opacity: 0%;
    }

    100% {
        opacity: 0%;
    }
}

.square {
    z-index: 0;
    /* opacity: 0; */
    background: var(--terminalGreen);
    margin: 0 -20px;
    height: 10px;
    width: 10px;
    box-shadow: 0px 0px 9px 7px var(--terminalGreen);

}

.open {
    animation: 1.5s square_open linear;
    animation-fill-mode: forwards;
}

@keyframes square_open {
    0% {
        height: 0%;
        width: 0%;
        opacity: 0%;
    }

    1% {
        height: 0%;
        width: 0%;
        opacity: 0%;

    }

    10% {
        height: 0%;
        width: 0%;
        opacity: 100%;
    }

    30% {
        height: 0%;
        width: 53%;
    }

    60% {
        height: 100%;
        width: 53%;
    }

    100% {
        height: 100%;
        width: 53%;
    }
}
