.grid-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
}
.grid-debug {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);

    .row {
        height: 100%;

        div {
            height: 100%;

            &::after {
                width: 100%;
                height:100%;
                content: "";
                display: block;
                background-color: rgba(255, 0, 0, 0.2);;
            }
        }
    }
}

