.cart .cartTable{
    border-collapse: collapse;
    table-layout: fixed;
    display: table;
    /*width: 100%;*/
}

.cart .cartTable .cartTableColumn{
    vertical-align: middle;
    display: table-cell;
    text-align: right;
}

.cart .cartTable .cartTableColumn:first-child{
    padding-right: 24px;
    width: 50px;
}

.cart .cartTable .cartIcon{
    background: url(images/cartH3.png) 0 0 no-repeat transparent;
    position: relative;
    margin-top: 12px;
    display: none;
    /*display: block;*/
    height: 50px;
    width: 50px;
    z-index: 10;
}



.cart .cartIcon .countLink{
    cursor: pointer;
    text-align: center;
    display: block;
    height: 50px;
    width: 50px;
}

.cart .cartIcon .countLink:active{
    position: relative;
    top: 1px;
}

.cart .cartIcon .count{
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #b2b2b2;
    position: absolute;
    border-radius: 50%;
    line-height: 25px;
    font-size: 13px;
    color: #ffffff;
    display: block;
    height: 25px;
    width: 25px;
    right: -4px;
    top: -4px;
}

.cart .heading{
    text-decoration: none;
    font-size: 16px;
    color: #000000;
}

.cart .heading.active:hover{
    opacity: 0.8;
}

.cart .heading.active:active{
    position: relative;
    top: 1px;
}

.cart .total{
    margin-left: 4px;
}

.cart .order{
    border: 1px solid #f3f3f3;
    text-decoration: none;
    display: inline-block;
    border-radius: 40px;
    text-align: center;
    padding: 6px 24px;
    margin-top: 6px;
    color: #b2b2b2;
}

#subHeader3 .cart .order.active:hover{
    opacity: 0.7;
}

.cart .order.active:active{
    position: relative;
    top: 1px;
}

#subHeader3 .cart .active:hover .count{
    opacity: 0.8;
}

@media all and (max-width: 600px){
    .cart .cartTable .cartIcon {
        background: url(/local/templates/touch_demo/components/bitrix/sale.basket.basket.line/topCart3/images/cart_new.png) 0px 0px no-repeat transparent;
        background-size: 25px 26px;
        width: 37px;
        height: 31px;
        margin-top: 15px;
    }

    .cart .cartIcon .count{
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        background: #b2b2b2;
        position: absolute;
        border-radius: 6px;
        line-height: 14px;
        font-size: 11px;
        font-weight: 500;
        color: #ffffff;
        display: block;
        height: 13px;
        width: 20px;
        right: 4px;
        top: -4px;
    }

    .cart .cartIcon .countLink{
        cursor: pointer;
        text-align: center;
        display: block;
        height: 40px;
        width: 40px;
    }
    .cart .cartTable .cartTableColumn:first-child{
        width: 31px;
    }
}

