﻿.cart-total {
    display: inline-block;
    margin-bottom: 1px;
    background-image: -webkit-linear-gradient(#6d6966, #3b3a39);
    background-image: -moz-linear-gradient(#6d6966, #3b3a39);
    background-image: -ms-linear-gradient(#6d6966, #3b3a39);
    background-image: linear-gradient(#6d6966, #3b3a39);
    -webkit-font-smoothing: antialiased;
    border: 0;
    padding: 1px;
    height: 30px;
    text-decoration: none;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    /*cursor: pointer;*/
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .cart-total:hover {
        text-decoration: none;
    }

    .cart-total span {
        display: block;
        position: relative;
        text-align: center;
        height: 30px;
        background: #4c4a48;
        background-image: -webkit-linear-gradient(#6d6a67, #3b3a39 85%, #565452);
        background-image: -moz-linear-gradient(#6d6a67, #3b3a39 85%, #565452);
        background-image: -ms-linear-gradient(#6d6a67, #3b3a39 85%, #565452);
        background-image: linear-gradient(#6d6a67, #3b3a39 85%, #565452);
        font-size: 14px;
        line-height: 30px;
        color: white;
        font-weight: bold;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
        -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
    }

        .cart-total span:before {
            content: '';
            display: block;
            position: absolute;
            left: 11px;
            top: 50%;
            width: 23px;
            height: 24px;
            margin-top: -12px;
            background-repeat: no-repeat;
            background-size: 23px 24px;
        }
