.fr-sticky-enable { transition: all 0.5s var(--blockpress-transition); position: sticky; top: -10px; z-index: 100000; } .fr-sticky-header { transition: all 0.5s var(--blockpress-transition), background 0s, left 0s, right 0s; box-shadow: 0px 10px 20px rgba(44, 62, 80, 0); } .fr-sticky-enable .fr-sticky-header { box-shadow: 0px 10px 20px rgba(44, 62, 80, 0.05); transition: all 0.5s ease; transition-delay: 0.1s; animation: stuckMoveDown .7s } @keyframes stuckMoveDown { 0% { transform: translateY(-40%); opacity: 0 } 100% { transform: translateY(0); opacity: 1 } }