.sticky-container {
    position: fixed;
    align-items: center;
    justify-content: center;
    z-index: 15;
    top: auto;
    bottom: auto;
    left: auto;
    right: 5%;
}

.sticky-wrapper {
    display: inline-block;
    width: 100%;
}

.mobile .sticky-container {
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
}

@media (max-width:700px) {
    .sticky-container {
        align-items: center;
        justify-content: center;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 15;
    }
}