/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 19 2026 | 07:25:26 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.aft_scr_stk{
    position: relative;
}

/* Sticky Active */
.aft_scr_stk.sticky-active{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    animation: smoothSticky 0.45s ease forwards;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Smooth Animation */
@keyframes smoothSticky{
    from{
        opacity: 0;
        transform: translateY(-80px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}