.shoppingcart-add {
    cursor: pointer;
}

.shoppingcart-show,
.shoppingcart-show a {
    cursor: pointer;
}

.shoppingcart-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 3px 4px 3px 0;
    background-image: url("assets/cart.svg");
    background-size: cover;
    vertical-align: middle;
}

/*noinspection CssOverwrittenProperties*/
.shoppingcart-total {
    display: inline-block;
    display: none;
    margin-left: 8px;
    vertical-align: middle;
    height: 18px;
    line-height: 18px;
    background: #888;
    white-space: nowrap;
    color: #fff;
    padding: 1px 10px;
    text-shadow: #333;
    border-radius: 15px;
}

/*noinspection CssOverwrittenProperties*/
.menu-item .shoppingcart-total {
    display: inline;
    display: none;
    margin: 0;
    padding: .1em .4em;
    line-height: 1;
    vertical-align: baseline;
}

.shoppingcart-preview {

}

.shoppingcart-display {
    display: none;
}

.shoppingcart-preview:hover .shoppingcart-display {
    display: block;
}

.shoppingcart-preview .quantity:after {
    content: 'x';
    padding: 0 .3em;
}

.shoppingcart-preview .is-child {
    display: none;
    font-size: .6em;
    padding-left: 2em;
    line-height: 1.5;
}

.shopping-cart-input.quantity {
    width: 33px;
    margin-right: 5px;
}

.product {
    max-width: 100%;
}

select.product {
    vertical-align: baseline;
}

#shoppingcartTableItems th.proz {
    text-align: center;
}

#shoppingcartTableItems .nummer {
    display: none;
}

#shoppingcartTableItems .pos .mge,
#shoppingcartTableItems .pos .preis {
    text-align: center;
}

#shoppingcartTableItems .proz,
#shoppingcartTableItems .pwert {
    text-align: right;
}

#shoppingcartTableItems.EUR .preis span:after,
#shoppingcartTableItems.EUR .pwert:after {
    content: " \20AC";
    white-space: nowrap;
}

#shoppingcartTableItems .proz:after {
    content: " %";
    white-space: nowrap;
}

#shoppingcartTableItems th:before,
#shoppingcartTableItems th:after,
#shoppingcartTableItems .empty:before,
#shoppingcartTableItems .empty:after,
#shoppingcartTableItems .empty *:before,
#shoppingcartTableItems .empty *:after {
    content: "" !important;
}

.cart-add,
.cart-add:hover,
.cart-add:active {
    color: #EE7F00;
    text-decoration: none;
}

.cart-add:before {
    content: " ";
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-image: url("assets/cart-add.svg");
    background-size: contain;
    vertical-align: middle;
}

.shoppingcart-show {
    display: block;
    padding: .5em 0;
    text-align: center;
    background-color: #eee;
    border-radius: 3px;
    text-decoration: none;
    transition: 0.3s all;
}

.shoppingcart-show:hover {
    box-shadow: 0 0 0 1px #ee7f00 inset;
}

.product-image-select-container {
    position: relative;
}

.product-image-select {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    cursor: pointer;
    background-position: center;
    background-size: 75%;
    background-repeat: no-repeat;
    background-color: #fff;
    border-radius: 100%;
    opacity: .5;
    transition: opacity .2s;
}

.product-image-select:hover {
    opacity: 1;
}

.product-image-select-l {
    left: 5%;
    background-image: url("assets/carat-l-black.svg");
}

.product-image-select-r {
    right: 5%;
    background-image: url("assets/carat-r-black.svg");
}

#toast-container .toast {
    opacity: 1;
}

#toast-container .toast-success {
    background-color: #ee7f00;
}

.toast-message p:last-child {
    margin-bottom: 0;
}

#busy {
    display: none;
    position: fixed;
    width: 12vw;
    max-width: 12vh;
    height: 12vw;
    max-height: 12vh;
    left: 44vw;
    top: 44vh;
    background-color: rgba(255, 255, 255, 0.5);
    background-size: contain;
    background-image: url("assets/busy-small.gif");
    background-repeat: no-repeat;
    background-position: center center;
    border: 2px solid #eee;
    border-radius: 100%;
    opacity: 1;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    z-index: 10000;
}

#busy.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-color: #FFF;
    background-size: auto;
    background-image: url("assets/busy.gif");
    border-radius: 0;
    border: none;
}

.busy {
    width: 100px;
    height: 100px;
    margin: auto;
    background-color: transparent;
    background-size: auto;
    background-image: url("assets/busy-small.gif");
    background-repeat: no-repeat;
    background-position: center center;
}