﻿/* CART ICON */

.CartIcon {
    display: inline-block;
    padding-top: 3px;
    text-align: left;
}
/*@media screen and (max-width: 991px) {    .CartIcon {        margin-left: auto;        position: relative;        width: 222px;        top: -90px;    }}*/

.CartSeperator {
    width: 10px;
}

.CartIcon .CartTable {
    display: table;
    cursor: pointer; /* float: right; */
}

    .CartIcon .CartTable #CartItemCountLarge {
        vertical-align: top;
        padding-right: 5px;
        line-height: 33px;
        font-family: Helvetica, Arial, Geneva, sans-serif;
        font-weight: normal;
        font-size: 30px;
        display: table-cell;
        color: #006fb9;
    }

.CartIcon #PopupCart #PopupCartView #CartItemCount {
    display: inline;
}

.CartIcon .CartTable .ItemText {
    vertical-align: top;
    text-align: left;
    display: table-cell;
    color: #404040;
}

    .CartIcon .CartTable .ItemText .Large {
        padding-top: 2px;
        line-height: 16px;
        font-size: 18px;
    }

    .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: 16px;
}
/* POPUP CART */

#PopupCart {
    background-color: White; /* margin-top: 42px; */
    position: absolute;
    z-index: 1000;
    padding: 8px;
    display: none;
    border: 1px solid #d8d8d8;
    width: 260px; /* left: -50px; */
}

#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: 40px;
    }

    .PopupCartLine .Description {
        font-size: 14px;
    }

        .PopupCartLine .Description.Headline {
            font-weight: bold;
        }

    .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;
    cursor: pointer;
    color: White;
}

    #PopupCartView .Show {
        font-size: 14px;
    }

    #PopupCartView .Count {
        font-size: 12px;
    }

#PopupCartAmount {
    padding-bottom: 5px;
    text-align: right;
    font-size: 15px;
}

#PopupCartAmountTable {
    display: table;
    width: 100%;
}

#PopupCartAmountText {
    text-align: left;
    display: table-cell;
}

#PopupCartAmountValue {
    display: table-cell;
}

.DivShopCartSpinner {
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}

#PopupCartAddTextLine {
    display: none;
}

    #PopupCartAddTextLine span {
        text-decoration: underline;
        font-size: 10px;
        cursor: pointer;
    }

    #PopupCartAddTextLine input {
        font-size: 10px;
        display: none;
        width: 100%;
    }
