.eyecatcher--fixed {
    position: fixed;
    bottom: calc(0.5rem + var(--eyecatcher-bottom, 0px));
    left: 0.5rem;
    z-index: 830;
    scale: 0.8;
    transform-origin: bottom right;
    transition: none !important;

}

@media (min-width: 576px) {
    .eyecatcher--fixed {
        scale: 0.9;
    }
}

@media (min-width: 992px) {
    .eyecatcher--fixed {
        bottom: calc(3rem + var(--eyecatcher-bottom, 0px));
        left: 3rem;
        scale: 1;
    }
}

.eyecatcher--neutral,
.eyecatcher--colored {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 26px;
    line-height: 1.1em;
    font-weight: 700 !important;
    text-align: center;
    text-decoration: none !important;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.eyecatcher--neutral {
    color: white !important;
    background-color: #0095df;
}

.eyecatcher--colored {
    color: white !important;
    background-color: #DB0202;
}

@media (any-hover: hover) and (any-pointer: fine) {
    .eyecatcher--is-link:hover {
        animation: bounce 0.7s ease-in-out;
    }
}

.eyecatcher--image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

@keyframes bounce {
    0% { scale: 1 }
    50% { scale: 1.1 }
    100% { scale: 1 }
}
