<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.quiqqer-order-basketButton {
    cursor: pointer;
    padding-right: 5px;
    position: relative;
}

.quiqqer-order-basketButton-icon {
    padding: 5px;
}

.quiqqer-order-basketButton-batch {
    background: #d9232b;
    border-radius: 10px;
    color: #fff;
    line-height: 20px;
    opacity: 0;
    padding: 0 5px;
    position: absolute;
    top: 0;
    right: -16px;
}

.quiqqer-order-basket-small-container {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    padding: 10px;
    position: absolute;
    z-index: 1000;
}

.quiqqer-order-basketButton-infoBubble {
    animation-duration: 1s;
    animation-fill-mode: both;

    color: #7d6608;
    background-color: #fcf3cf;
    border: 1px solid #fbeebc;
    border-radius: 3px;
    padding: 0.75rem 1.25rem;
    position: absolute;
    right: 0;
    z-index: 1001;
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.65, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -10px, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 10px, 0);
    }

    75% {
        transform: translate3d(0, -10px, 0);
    }

    90% {
        transform: translate3d(0, 5px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.bounceInDown {
    animation-name: bounceInDown;
}
</pre></body></html>