/* wc-dynamic-cart-count.css */
.cart-count {
    position: absolute;
    left: 1em;
    top: 1em;
    color: #222222;
    padding: 0 5px;
    border-radius: 50%;
    background-color: #969696;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: inherit;
}
.cart-count.count-0 {
    display: none;
}
.icon-cart {
    margin-right: 1rem;
}
.icon-cart:has(.count-0) {
	margin-right: 0px;
}
