.shoppingCartCompact__link {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.shoppingCartCompact__icon {
    font-size: 2rem;
    font-style: normal;
    color: var(--secondaryColor500);
}

.shoppingCartCompact__number {
    position: absolute;
    top: 0;
    right: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.2rem;
    border-radius: 1rem;
    color: #fff;
    background-color: var(--secondaryColor500);
}

/**
 * Products popup
 */

.shoppingCartCompact .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;
}

.c-productsPopup__productPrice {
    word-break: normal;
}
