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

PremiumZone

Version :
1.0.0

File :
assets/css/top-rail.css

Description :
PremiumZone Top Rail

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

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

.pz-top-rail{

    position:absolute;

    left:22px;

    right:22px;

    top:40px;

    height:1px;

    overflow:hidden;

    pointer-events:none;

    z-index:20;

}

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

.pz-top-rail-track{

    position:absolute;

    top:0;

    right:0;

    width:100%;

    height:1px;

    background:

        linear-gradient(

            270deg,

            rgba(
                255,
                255,
                255,
                .95
            )

            0%,

            rgba(
                255,
                255,
                255,
                .55
            )

            45%,

            rgba(
                255,
                255,
                255,
                0
            )

            100%

        );

    transform:

        translateX(

            100%

        );

}