.cart_count {
    --cart-count-span-bg: red;
    --cart-count-span-color: #fff;
    --cart-count-bg: var(--secondary);

}
.cart_count a {
    position: relative;
}

.cart_count a span {
    display: block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    bottom: 10px;
    right: 4px;
    position: absolute;
    font-size: 8px;
    font-weight: 400;
    background: var(--cart-count-span-bg);
    color: var(--cart-count-span-color);
    border-radius: 50%;
}

.cart_count.fixed {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 50;
    animation: orderShow 0.4s ease;
    width: 46px;
    height: 46px;
    background: var(--cart-count-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.cart_count.fixed a{
    font-size: 1.5rem;
}

@keyframes orderShow {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}