/*=================== CART MODULE =========================*/
.elegantshop-cart-wrapper a.et_pb_button:after {
    content: attr(data-icon);
}

a.elegantshop-cart {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 999999;
    cursor: pointer;
}

.elegantshop-cart-icon {
    font-family: ETmodules;
    cursor: pointer;
}

.elegantshop-super-z-index {
    z-index: 99999999 !important;
}



.elegantshop-cart-wrapper {
    position: relative;
    z-index: 999;
    display: inline-block;
    text-align: left;
}


.elegantshop-cart-inner-content {
    opacity: 0;
    position: absolute;
    top: 20px;
    z-index: 9999;
    display: none;
    opacity: 0;
    background-color: #fff;
    padding: 20px;
    width: 300px;
    box-shadow: 0px 0px 3px 3px rgb(0 0 0 / 5%);
}

.elegantshop-cart-inner-content.elegantshop-display-cart {
    display: block;
    opacity: 1;
    animation-name: display_cart_animation;
    animation-duration: 0.6s;
}

.elegantshop-cart-icon {
    display: inline-block;
}

.elegantshop-cart-quantity {
    display: inline-block;
    margin-left: -0.3em;
    top: -0.8em;
    position: relative;
    z-index: 999;
    background-color: #505050;
    height: 2em;
    line-height: 2em;
    width: 2em;
    text-align: center;
    border-radius: 300px;
    color: #fff;
}

.elegantshop-cart-total {
    display: inline-block;
    margin-left: 0.2em;
}

.elegantshop-cart-product-image {
    width: 30%;
    display: block;
    float: left;
    max-width: 100px;
}

.elegantshop-cart-product-title {
    float: left;
    width: 55%;
    position: relative;
    left: 2%;
}

.elegantshop-cart-product-quantity {
    float: left;
    width: 65%;
    position: relative;
    left: 2%;
}

.elegantshop-cart-product {
    display: block;
    width: 100%;
    clear: both;
    position: relative;
    float: left;
}

a.elegantshop-remove-cart-item-css {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 120%;
}

.elegantshop-cart-header {
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.elegantshop-cart-closecart {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    cursor: pointer;
}

.elegantshop-cart-button-wrapper {
    display: block;
    float: left;
    clear: both;
    margin: 35px 0;
}

.elegantshop-cart-opencart {
    cursor: pointer;
}

.elegantshop-cart-subtotal-wrapper {
    display: block;
    float: left;
    clear: both;
    border-top: 1px solid rgba(0,0,0,0.1);
    width: 100%;
    padding: 20px 0 0 ;
    margin-top: 20px;
}

.elegantshop-cart-subtotal {
    margin-left: 0.2em;
}

.elegantshop-display-cart-mousehover .elegantshop-cart-closecart {
    display: none !important;
}

h3.elegantshop-cart-main-title {
    max-width: 80%;
}



@keyframes display_cart_animation {
    from {opacity: 0}
    to {opacity: 1}
}

