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

PremiumZone

Sprint :
PZ-014

File :
assets/css/panel/node.css

Description :
Node Entity

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

/* ==========================================================
   CORE
========================================================== */

.pz-node-core{

    position:absolute;

    width:10px;

    height:10px;

    border-radius:50%;

    background:#FFFFFF;

    transform:

        translate(

            -50%,

            -50%

        );

    pointer-events:none;

    will-change:

        transform,

        opacity;

    z-index:30;

}

/* ==========================================================
   SATELLITE
========================================================== */

.pz-node-satellite{

    position:absolute;

    width:4px;

    height:4px;

    border-radius:50%;

    background:#FFFFFF;

    transform:

        translate(

            -50%,

            -50%

        );

    pointer-events:none;

    will-change:

        transform;

    z-index:31;

}