.shopping-cart-compact {
    position: relative;
}

.shopping-cart-compact__numberOfArticles {
    position: absolute;
    top: 0;
    right: -2px;
    width: .8rem;
    height: .8rem;
    padding: 0.3em;
    box-sizing: content-box;
    border-radius: 50%;
    font-size: .5em;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 0 0 2px #fff;
    color: var(--baseWhite);
    background-color: var(--primaryColor);
}

/**
 * CSS related to products popup
 */

.shopping-cart-compact .c-productsPopup {
    margin-top: -1000px;
    opacity: 0;
    transition: opacity .3s ease .7s, margin-top .5s ease .6s;
}

.shopping-cart-compact--peekInto .c-productsPopup {
    opacity: 1;
    margin-top: 50px;
    transition: opacity 0.5s ease .5s, margin-top 0.5s ease .2s;
}
