/** Ecom Toolbar **/

#accountPanel {
    display: none;
    background: #fff;
    z-index: 1000;
    border: 1px solid #000;
    padding: .5em;
    border-radius: 4px;
    opacity: 1;
    width: 8em;
    right: 0;
    position: absolute;
}
#accountPanel.open {
    display: block;
}

#acctMenu {
    list-style: none;
    margin: 0;
}
#acctMenu li {
    white-space: nowrap;
    padding: .25em 0;
    margin: 0 auto;
    border-bottom: 1px solid #666;
}

#acctMenu a, #acctMenu a:visited {
    color: #666;
    font-size: .9rem;
    font-weight: 400;
    cursor: pointer;
    background-color: transparent;
}
#acctMenu a:hover, #acctMenu a:active {
    color: #000;
    background-color: #f0f0f0;
}

.shopAccount {
    max-height: 25px;
    cursor: pointer;
    margin-right: 0;
}

.shopAccount svg{
	fill: white;
}
.shopAccount circle:first-child{
	fill: black;
}
.shopAccount:hover svg{
	fill: black;
}
.shopAccount:hover circle:first-child{
	fill: white;
}

@media screen and (max-width: 1275px) {
    .shopAccount {
        margin-right: 2em;
    }
}

#widgetBar div#accountPanel.open {
    margin-right: 3em;
    margin-top: 3rem;
}

@media screen and (min-width: 1185px) {
    #widgetBar div#accountPanel.open {
        margin-right: 15em;
        margin-top: 3rem;
    }
}

a.shoppingcart {
    cursor: pointer;
    position: relative;
}
a.shoppingcart svg {
    width:27px;
    height: 27px;
    vertical-align: bottom;
    fill: #000;
}
a.shoppingcart svg:hover, a.shoppingcart svg:active {
    /*fill: #BF202F;*/
    fill: #0f75bc;
}
a.shoppingcart .cartWidgetPrice {
    display: none;
}
a.shoppingcart .cartWidgetPrice.cartnonzero {
    display: inline;
    margin-right: .3em;
}
a.shoppingcart .cartWidgetItems {
    /*background: #0d9c00;*/
    background: #0f75bc;
    position: absolute;
    color: #fff;
    font-weight: 600;
    font-size: .7em;
    width: 1.5em;
    height: 1.5em;
    padding: 0;
    padding-top: 1px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    top: -40%;
    right: -15%;
}
a.shoppingcart .cartWidgetItems.cartfull {
    display: flex;
}

span.currencySwitch a {
    color: #000;
}
span.currencySwitch a img {
    width: 30px;
    filter: grayscale();
}
span.currencySwitch a:hover, span.currencySwitch a:active, span.currencySwitch a.selCurrency {
    color: #0f75bc;
}
span.currencySwitch a.selCurrency img {
    filter: none;
}
span.currencySep {
    margin: 0 .1em;
}
/** end ecom toolbar **/