/*noinspection ALL*/
.custom-cart {
    position: relative;
}

/*noinspection ALL*/
.custom-cart .custom-cart-bubble-text {
    padding: 0.35em 0.45em;
    z-index: 9;
    position: absolute;
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
    border-radius: 100%;
    font-size: 16px;
}

@keyframes updown {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(-30%);
    }

    100% {
        transform: translateY(0%);
    }
}