#site-navigation--stickynavigation > * {
    width: 50%;
}
.sticky-show {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    transition: none;
}

#site-navigation--stickynavigation.fade-up {
    animation-name: fadeInBottom;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInBottom;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-mode: both;
}

.sticky-show button, .sticky-show a {
    width: 100%;
    border-radius: 0;
    padding: 15px 16px;
}


#site-navigation--stickynavigation.sticky-end > * {
    width: 100%;
}

.sticky-end button, .sticky-end a {
    width: 100%;
    float: none;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.sticky-end {
    margin: 0 auto;
    text-align: center;
    padding: 16px 16px 32px;
}


@media only screen and (min-width: 1024px){
    #site-navigation--stickynavigation {
        display: none;
    }
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to { opacity: 1 }
}
.sticky-show {
    bottom: 65px;
}
