﻿/* CART ICON */
.CartIcon {
    /*padding-top: 3px;*/
    text-align: left;
    width: auto;
    /*float: right;*/
}

@media screen and (max-width: 768px) {
    .CartIcon {
        float: unset;
    }
}

.CartSeperator {
    width: 10px;
}
.CartIcon .CartTable {
    /*display: table;*/
    cursor: pointer;
    float: right;
    height: 60px;
    line-height: 60px;
   
    border-left: 1px solid #666;
    border-right: 1px solid #666;
    text-align: center;
    min-width: 80px;
}

    .CartIcon .CartTable:hover {
        background-color: rgba(255, 255, 255, .1);
    }
    .CartIcon .CartTable #CartItemCountLarge {
        /* vertical-align: top; */
        
        line-height: 33px;
        font-weight: normal;
        font-size: 12px;
        /* display: table-cell; */
        position: relative;
        color: #ffffff;
        top: -8px;
    }
.CartIcon #PopupCart #PopupCartView #CartItemCount {
    display: inline;
}
.CartIcon .CartTable .ItemText {
    vertical-align: top;
    text-align: left;
    /*display: table-cell;*/
    color: #ffffff;
    position: relative;
    top: -2px;

    display: none;
}
.CartIcon .CartTable .ItemText .Large {
    padding-top: 2px;
    line-height: 16px;
    font-size: 14px;
}
.CartIcon .CartTable .ItemText .Small {
    line-height: 11px;
}
.CartIcon .CartTable .ItemArrow {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url(../Images/Arrow_Down_7x3.png);
    /*display: table-cell;*/
    width: 16px;
}
.CartIcon .CartTable .ItemShopping {
    vertical-align: middle;
    /*display: table-cell;*/
    width: auto;
}

.ft-cart-icon img{
    height: 20px;
    width: auto;
}


/* POPUP CART */
#PopupCart {
    background-color: White;
    margin-top: 60px;
    position: absolute;
    z-index: 20;
    padding: 15px;
    display: none;
    border: 0px solid #d8d8d8;
    border-radius: 0px 0px 5px 5px;
    -moz-border-radius: 0px 0px 5px 5px;
    -webkit-border-radius: 0px 0px 5px 5px;
    width: 300px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
    right: 0px;
}
#PopupCartContent {
    max-height: 600px;
    overflow: auto;
    margin: 0px;
}
.PopupCartTable {
    display: table;
    width: 100%;
}
.PopupCartLine {
    display: table-row;
}
.PopupCartLine > div {
    vertical-align: top;
    padding-bottom: 5px;
    display: table-cell;
}
.PopupCartLine .Image {
    padding-right: 15px;
    width: 30px;
}
.PopupCartLine .Description {
    font-size: 14px;
}
.PopupCartLine .Quantity {
    font-size: 12px;
    color: #d8d8d8;
}
.PopupCartLine .Amount {
    text-align: right;
}
#PopupCartTotalLine {
    display: table-row;
}
#PopupCartTotalLine > div {
    display: table-cell;
}
#PopupCartView {
    background-color: #3a3a3a;
    text-align: center;
    padding: 10px;
    /*margin-right: 8px;*/
    cursor: pointer;
    color: White;
    border-radius: 42px;
    margin-top: 15px;
    margin-bottom: 8px;
    line-height: 17px;
}
#PopupCartView .Show {
    font-size: 14px;
}
#PopupCartView .Count {
    font-size: 12px;
}
#PopupCartAmount {
    padding-bottom: 5px;
    /*margin-right: 8px;*/
    text-align: right;
    font-size: 15px;
}
#PopupCartAmountTable {
    display: table;
    width: 100%;
}
#PopupCartAmountText {
    text-align: left;
    display: table-cell;
    padding-top: 5px;
    font-weight: 700;
}
#PopupCartAmountValue {
    display: table-cell;
    padding-top: 5px;
    font-weight: 700;
}
.DivShopCartSpinner {
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}

#PopupCart h4 {
    color: black;
    font-size: 21px;
    margin-bottom: 20px;
}