.successNavButton {
    width: 100%;
    z-index: 9999;
}

.successNavButton.is-sticky {
    position: fixed !important;
    top: 0;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    z-index: 9999;
    margin: 0 !important;
}
.sticky-placeholder {
    display: none;
}

@keyframes stickySlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}