/*
==========================================================

PremiumZone

Version :
1.0.0

File :
assets/modules/background/cell.css

Description :
PremiumZone Cell

==========================================================
*/

/* ==========================================================
   CELL
========================================================== */

.pz-cell{

    position:absolute;

    width:2px;

    background:#00E5FF;

    opacity:.30;

    border-radius:2px;

    pointer-events:none;

    box-shadow:

        0 0 4px #00E5FF,

        0 0 8px rgba(

            0,

            229,

            255,

            .55

        );

    will-change:

        transform,

        opacity;

}

/* ==========================================================
   VARIATION
========================================================== */

.pz-cell:nth-child(

    2n

){

    width:1px;

    opacity:.20;

}

.pz-cell:nth-child(

    3n

){

    width:3px;

    opacity:.40;

}

.pz-cell:nth-child(

    5n

){

    opacity:.15;

}