@import '../../styles/constants';

.GridOverlayModule {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    pointer-events: none;

    &__container {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        height: 100%;

        opacity: 0.2;

        &--column {
            height: 100%;

            background-color: $primary-color-red;
        }
    }
}
