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

PremiumZone

Version :
1.0.0

File :
assets/css/bottom-rail.css

Description :
PremiumZone Bottom Rail

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

/* ==========================================================
   ROOT
========================================================== */

.pz-bottom-rail{

    position:absolute;

    left:22px;

    right:22px;

    bottom:80px;

    height:1px;

    overflow:hidden;

    pointer-events:none;

    z-index:20;

}

/* ==========================================================
   TRACK
========================================================== */

.pz-bottom-rail-track{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:1px;

    background:

        linear-gradient(

            90deg,

            rgba(

                255,

                255,

                255,

                .95

            )

            0%,

            rgba(

                255,

                255,

                255,

                .55

            )

            45%,

            rgba(

                255,

                255,

                255,

                0

            )

            100%

        );

    transform:

        translateX(

            -100%

        );

}