.mnCart_wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cartHtmlWrapper {
    position: relative;
}
.cartWrapper {
    display:inline-block;
    top:0;
    right:0;
    z-index: 9;
    transition: top .9s;
    margin-right: 30px;
}
.cartWrapper.cartAtTop {
    top:10px;
}
.cartButton {
    width:50px;
    height:50px;
    border-radius:50px;
    opacity:1;
    color:var(--main_color3);
    background-color:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s, box-shadow 1s;
}

.cartOpen .cartButton {
    opacity:1;
}
.hasItemsInCart .cartButton {
    text-decoration: none;
    color:#000;
    opacity:1;
}




.cartButton .nrOfItemsInCart_preview {
    font-size:1em;
    line-height: 0;
    position: relative;
    top: -10px;
    left: 2px;
    /*
    display: flex;
    width: 28px;
    height: 28px;
    border-radius:28px;
    color: #fff;
    background-color: #000;
    align-items: center;
    justify-content: center;
    */
}
.cartInit_loading {
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cartInitLoading .cartButton {
    opacity:1;
}
.cartInitLoading .cartButton > i,
.cartInitLoading .cartButton > span {
    display: none;
}
.cartInit_loading {
    display:none
}
.cartInitLoading .cartInit_loading{
    display: flex;
}


.cartContentsWrapper {
    width: 500px;
    position: absolute;
    top: 90px;
    right: 0;

    display: none;
    opacity:0;
    transition: opacity .2s;

    border-radius: 5px;
    background-color:#fff;
    box-shadow: 1px 1px 10px 2px rgb(0 0 0);
}
.cartOpen .cartContentsWrapper {
    display:block;
}
.cartOpenShow .cartContentsWrapper {
    opacity:1;
}

.cartContentsWrapper_loading {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    background-color: #fff;
    opacity: .7;
    z-index: 1;
    align-items: center;
    justify-content: center;
}
.cartContentsWrapper.cartContentLoading .cartContentsWrapper_loading {
    display:flex;
}


.cartContentsHeader {
    height: 50px;
    background-color:#000;
    color:#fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    text-transform: uppercase;
}
.noItemsInCart .cartContentsHeader,
.noItemsInCart .cartButton .nrOfItemsInCart_preview {
    display: none;
}
.cartContentsBody,
.cartContentsFooter {
    box-sizing: border-box;
    padding: 20px;
    color:#333;
}
.cartContentsBody_inner {
    border:solid 1px #ccc;
    padding: 8px;
    max-height: calc(70vh - 120px);
    overflow-y: scroll;
    box-sizing: border-box;
}
.cartContentsBody .ccb_left {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cartContentsBody .ccb_center {
    width: 60%;
    box-sizing: border-box;
    padding: 0 20px;
}
.ccbBottom_wrapper {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.ccb_aditionalinfo {
    display: flex;
    align-items:flex-start;
    justify-content:flex-start;
    flex-direction: column;
}
.cartContentsBody .ccb_right {
    width: 20%;
    display: flex;
    align-items:flex-end;
    justify-content:space-between;
    flex-direction: column;
}
.cartContentsBody .ccb_right a {
    position: relative;
    top:-10px;
}
.ccb_left img {
    width: 100%;
}
.ccfPriceWrapper {
    padding-bottom:20px;
}
.cartContent_Item,
.ccfPriceWrapper,
.ccfNavWrapper {
    display: flex;
    align-items: center;
    justify-content:space-between;
}
.ccfPriceTitle {
    text-transform: uppercase;
}
.ccfPriceTotal {
    font-size:1.3em;
    text-transform: uppercase;
    display: flex;
}
.ccfNavWrapper a.continueShopping {
    color:#666;
}
.ccfNavWrapper a.cartBtn_goToCheckout {
    background-color: #000;
    color:#fff;
}
.cartContentsFooter {
    padding-top:0;
}
.cartContent_Item {
    border-bottom:solid 1px #eee;
    padding: 10px 0;
    margin-bottom: 5px;
    align-items: stretch;
}
.cartContentsBody_inner .cartContent_Item:last-child {
    border:none;
}
.removeFromCart {
    color:#c00;
}
.ccbr_priceWrapper {
    text-align: right;
}
.ccbr_priceDetails {
    display: flex;
    white-space: nowrap;
}
.cartWrapper.noItemsInCart .cartContentsFooter {
    display:none;
}
.isSingleQty .ccbidQty_up,
.isSingleQty .ccbidQty_down {
    display: none;
}
.noItemsMessage {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ccbItemDescQty {
    margin-top:12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.ccbItemDescQty > strong, 
.ccbItemDescQty > span {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}
.ccbItemDescQty > label {
    font-size: 1em;
}
.ccbItemDescQty_wrapp {
    border: solid 1px var(--main_color1);
    height: 30px;
    margin-left:10px;
    padding: 0 10px;
}
.ccbItemDescQty_wrapp a {
    position: relative;
    font-size:3em;
    display: flex;
    justify-content: center;
    color:var(--main_color0);
}
.ccbidQty_up {
    align-items: flex-end;
    top:0;
}
.ccbidQty_down {
    align-items: flex-start;
    top:0;
}
.ccbItemDescQty_wrapp .ccbidQty_number {
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:1.2em;
}
.ccbItemDescQty_wrapp a i,
.ccbItemDescQty_wrapp a i {
    height: 100%;
    line-height: unset;
}