/* =====================================
   Carrito VYMSTORE
===================================== */


/* Contenedor del carrito */

.site-header-cart .cart-contents {

    position: relative;
    display: flex;
    align-items: center;

}


/* Burbuja cantidad */

.site-header-cart .cart-contents .count {

    position: absolute;

    top: -14px;
    right: -18px;

    background: #e53935;

    color: #ffffff;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 700;

    box-shadow: 0 3px 8px rgba(0,0,0,0.25);

    z-index: 20;

}


/* Quitamos los paréntesis de WooCommerce */

.site-header-cart .cart-contents .count {

    font-size: 0;

}


.site-header-cart .cart-contents .count::after {

    content: attr(data-count);

    font-size: 15px;

}