#sticky-element {
    position: fixed;
    z-index: 9999;
    width: 250px;
    height: auto;
}

#sticky-element img {
    width: 100%;
    height: auto;
}

/* Positionen */
.top-right {
    top: 20px;
    right: 20px;
}

.bottom-right {
    bottom: 150px;
    right: 0px;
}

.top-left {
    top: 20px;
    left: 20px;
}

.bottom-left {
    bottom: 20px;
    left: 20px;
}

@media screen and (max-width: 767px) {
    #sticky-element {
        display: none;
    }
}
