@keyframes fadeinsticky {
    from {
        transform: translateY(100px);
    }
    to {
        transform: translateY(0px)
    }
}

#stickymobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: rgba(48, 119, 61, 0.9);
    z-index: 900;
    text-align: center;
    padding: 6px;
    animation-name: fadeinsticky;
    animation-duration: 3s;
    animation-delay: 3s;
    animation-fill-mode: backwards;
    display: none;
}

#stickymobile.show {
    display: block;
}

#stickymobile a {
    border-radius: 4px;
    background-color: #fe9000;
    padding: 10px 15px;
    border: 1px solid #fe9000;
    transition: background-color, color .3s;
    color: #FFFFFF;
    font-size: 16px;
    display: inline-block;
    font-weight: 400;
    letter-spacing: 0;
}

#stickymobile a:hover {
    background-color: #FFFFFF;
    color: #fe9000;
}

@media only screen and (min-width: 992px) {
    #stickymobile {
        display: none !important;
    }
}