#ssto-olive-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.6);
    border: 3px solid #847630;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    backdrop-filter: blur(3px);
    transition: transform .25s ease, background .25s ease;
}

/* Pfeil */
#ssto-olive-btn::before {
    content: "";
    width: 14px;
    height: 14px;
    border-left: 4px solid #847630;
    border-top: 4px solid #847630;
    transform: rotate(45deg);
    margin-top: 6px;
}

/* Hover Desktop */
@media (hover: hover) {
    #ssto-olive-btn:hover {
        background: rgba(255,255,255,0.85);
        transform: translateY(-3px);
    }
}

/* Mobile */
@media (max-width: 767px) {
    #ssto-olive-btn {
        width: 46px;
        height: 46px;
        right: 16px;
        bottom: 16px;
    }
}
