.product .added_to_cart,
.wc-modal-minicart,
.float-cart .woocommerce-Price-currencySymbol,
.woocommerce-cart-total .woocommerce-Price-currencySymbol {
    display: none !important;
}
.float-cart {
    position: fixed;
    top: 100px;
    right: 50px;
    z-index: 4000;
}
.float-cart__carticon-img {
    width: 40px;
    height: 40px;
    padding: 18px;
    stroke: #000;
    background: #fff;
    border-radius: 20px;
}
.float-cart__carticon {
    position: relative;
    background-color: rgba(255,255,255,.8);
    border-radius: 50px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    will-change: transform;
    transition: transform 0.2s ease-in-out;
    overflow: hidden;
}
.float-cart__count {
    width: 30px;
    height: 30px;
    background-color: red;
    color: #fff;
    border-radius: 30px;
    position: absolute;
    right: -3px;
    bottom: -3px;
    text-align: center;
    line-height: 30px;
    font-family: Arial,Helvetica,sans-serif;
}

.float-cart__amount {
    position: absolute;
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    right: 130%;
    white-space: nowrap;
    background: #292929;
    color: #fff;
    font-size: 15px;
    box-sizing: border-box;
    padding: 9px 13px;
    border-radius: 3px;
    transition: opacity 0.3s linear;
    opacity: 0;
    pointer-events: none;
}
.float-cart__amount:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    top: 50%;
    right: -20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-left-color: #292929;
}

.float-cart:hover .float-cart__carticon, 
.float-cart.hover .float-cart__carticon {
    transform: scale(1.1);
}
.float-cart:hover .float-cart__amount,
.float-cart.hover .float-cart__amount {
    opacity: 1!important;
    cursor: pointer;
    pointer-events: initial;
}
.woocommerce-cart-total {
    margin: 30px 0;
    font-weight: 700;
    font-size: 1.5em;
}