﻿/* */

#cartHeaderDiv {
    width: 100%;
    text-align: left;
    font-weight: bold;
    padding-bottom: 1em;
}


/* begin shopping cart headers */


/* cart items */

.itemContainer {
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: row;
    gap: 4px;
    justify-content: space-between;
}

.itemContainer a {
    text-decoration: none;
}

.itemContainer .itemthumb img {
    width: 26px;
    height: 23px;
    margin: 0 2ch;
    flex-grow: 0;
    flex-shrink: 0;
}

.itemContainer .itemName {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: left;
}

.itemContainer .itemQuantity {
    width: 30px;
    text-align: center;
    flex-grow: 0;
    flex-shrink: 0;
}

.itemContainer .itemPrice {
    width: 9ch;
    text-align: right;
    flex-grow: 0;
    flex-shrink: 0;
}

.itemContainer .itemTotal {
    width: 10ch;
    text-align: right;
    flex-grow: 0;
    flex-shrink: 0;
}

.itemContainer .itemincrement,
.itemContainer .itemdecrement {
    padding: 0 3px;
    flex-grow: 0;
    flex-shrink: 0;
}

.itemContainer .itemincrement a,
.itemContainer .itemdecrement a {
    font-weight: bold;
    display: block;
    text-align: center;
    width: 13px;
}

.itemContainer .itemRemove {
    padding: 0 0 0 0;
    text-align: left;
    flex-grow: 0;
}

.itemContainer .itemremove a {
    color: #666;
}

.itemContainer .itemremove a:hover {
    color: #f33;
}

.cartHeaders {
    box-sizing: border-box;
    width: 100%;
    height: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    margin-bottom: 3px;
    background-color: rgba(0, 169, 165, 0.08);
    /* padding: 0.5rem 3ch 0 1.5ch; */
    padding: 0.5rem 3ch 0 0;
    font-weight: bold;
    font-size: smaller;
}

.cartHeaders .itemQuantity {
    width: 10ch;
    text-align: center;
    flex-grow: 0;
    flex-shrink: 0;
}

.cartHeaders .itemName {
    text-align: center;
    flex-grow: 1;
}

.cartHeaders .itemPrice {
    text-align: right;
    width: 9ch;
    flex-grow: 0;
    flex-shrink: 0;
}

.cartHeaders .itemTotal {
    text-align: right;
    width: 12ch;
    flex-grow: 0;
    flex-shrink: 0;
}


/*  these replace hard-coded styles in simpleCart.js   */

.simplecart-increment {
    border: 0;
    padding-top: 1px;
}

.simplecart-decrement {
    border: 0;
    padding-top: 1px;
}


/*  /hard-coded styles from simpleCart.js   */


/* begin styling for cart showcase items -- */

ul.items {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    text-indent: 0;
    position: relative;
    left: -20px;
}

li.seriesbreak {
    clear: both;
    border-bottom: 1px solid #999;
    color: #999;
}

li.forSale {
    width: 190px;
    height: 100px;
    float: left;
    margin: 0 0 0 0;
    padding-left: 0px;
    padding-right: 5px;
    list-style-type: none;
}

li.forSale div {
    width: 40px;
    float: left;
}

li.forSale span {
    text-align: left;
}

li.forSale img.thumb {
    width: 36px;
    position: relative;
    border: 0;
    left: 0;
    top: 0px;
}

li.forSale a img {
    border: 0;
}

li.forSale span.dispPrice {
    display: block;
    border-bottom: 1px dotted #ccc;
    padding-left: 1ex;
}

.cartbottomlink {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 10px;
}

.cartcheckoutcolheader {
    font-weight: bold;
    white-space: nowrap;
    border-bottom: solid 1px silver;
    padding-bottom: 2px;
}


/* end  styling for cart showcase items -- */


/* begin checkout styling */

#addresses div {
    padding-bottom: 20px;
}

#addresses ul {
    float: left;
    list-style: none;
    padding: 10px;
    margin: 0;
    border: 1px solid #fff;
    width: 255px;
    overflow: hidden;
}

#addressBreak {
    clear: both;
    padding-top: 20px;
}

a.action {
    padding: 0 10px 0 0;
}

.highlighttext {
    background: none repeat scroll 0 0 #EEFFBB;
}

div.ClearFloat {
    clear: both;
}

.charterrormsg {
    border-top: 1px dotted #ff0000;
    border-bottom: 1px dotted #ff0000;
    text-align: center;
    background-color: #ffcccc;
}

.cartfieldswidth {
    width: 200px;
}

#addresses div {
    padding-bottom: 20px;
}

#addresses ul {
    float: left;
    list-style: none;
    padding: 10px;
    margin: 0;
    border: 1px solid #fff;
    width: 255px;
    overflow: hidden;
}

a.action {
    padding: 0 10px 0 0;
}

.carterror {
    border-top: 1px dotted #ff0000;
    border-bottom: 1px dotted #ff0000;
    text-align: center;
    background-color: #ffcccc;
}


/* showcase styling */

.storeshowcaseimg {
    height: 200px;
    width: 130px;
}

.storeshowcase {
    width: 130px;
    vertical-align: top;
    padding-right: 10px;
}

.shopping-checkout-error {
    width: calc(100% - 4ch);
    text-align: center;
    background-color: yellow;
    padding: 0.5rem 2ch;
    box-sizing: border-box;
    border: solid 1px red;
    border-radius: 8px;
    margin: 0 2ch;
}