/* Variables */
:root {
    --purple-dark-2: #7E2268;
}

/* Banners */
.woocommerce-gift-banners {
    display: flex;
}

.woocommerce-gift-banners:before {
    content: "";
    position: relative;
    inset: 0;
    display: block;
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 7px;
}

.woocommerce-gift-banners p {
    font-weight: 400;
    font-size: 18px;
}

.woocommerce-gift-banners {
    background-color: rgba(126, 34, 104,.25) !important;
    color: black;
}

.woocommerce-gift-banners:before {
    background-image: url("../../resources/images/giftbox-black.svg");
    background-position: center;
    background-repeat: no-repeat;
}


/* Upsell Cart */
.section-cart .woocommerce-upsell {
    /* position: absolute; */
    /* left: 0;
    right: 0; */
    margin-top: 40px;
    background-color: white;
    box-shadow: 0 0 13px rgba(126, 34, 104, 0) !important;
    border-radius: 0px !important;
    padding: 0 !important;
}

.section-cart .woocommerce-upsell>strong,
.section-cart .woocommerce-upsell>small {
    font-size: 16px;
    color: black;
    padding-left: 14px;
}

.section-cart .woocommerce-upsell>strong {
    font-weight: 600;
}

.section-cart .woocommerce-upsell>small {
    display: block;
    font-weight: 400;
    width: 100%;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(126, 34, 104, .15);
}

/* Product Item */
.product__cart-item {
    display: flex;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.product__cart-item:first-of-type {
    margin-top: 34px
}

.product__cart-item img {
    width: 68px;
    min-width: 68px;
    height: 63px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 17px;
    padding: 5px;
    margin-right: 21px;
}

/* Product Item Content */

.product__cart-item .product__cart-item-content {
    margin-right: 43px;
    width: 100%;
}

.product__cart-item .product__cart-item-content span,
.product__cart-item .product__cart-item-content p {
    font-size: 18px;
    font-weight: 400;
}

.product__cart-item .product__cart-item-content span {
    color: var(--purple-dark-2);
}

.product__cart-item .product__cart-item-content p {
    color: black;
    padding-top: 6px;
}

/* Product Item Button */
a.button.button-add,
.section-cart .section__content .cart-collaterals .cart_totals .product__cart-item .button-add {
    font-size: 0 !important;
    padding: 0 !important;
    width: auto !important;
}

.product__cart-item .button-add:after {
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    background-image: url("../images/btn.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Badge */
.ccc-gift-badge {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    color: white;
    text-transform: lowercase;
    background-color: var(--purple-dark-2);
    border-radius: 14px;
    padding: 4px 18px;
    width: max-content;
    margin-top: 9px;
}

.ccc-gift-badge:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("../images/giftbox.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 7px;
}

/* Buttons */
.button-change-items {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: white !important;
    color: #802960 !important;
    border: 1px solid #802960 !important;
    transition: all .3s;
    margin-top: 24px !important;
}

.button-change-items:hover {
    color: white !important;
    background-color: rgba(128, 41, 96, .5) !important;
    transition: all .3s;
}

.button-change-items:before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background-image: url("../images/reload.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    transition: all .3s;
}

.button-change-items:hover:before {
    transform: rotate(-90deg);
    transform-origin: center;
    transition: all .3s;
}

/* Checkout */
.woocommerce-checkout .fee th,
.woocommerce-checkout .fee td {
  color: black !important;
  font-size:16px !important;
}

.woocommerce-checkout .fee td {
    text-align: right;
    font-weight: 400 !important;
}

.woocommerce-checkout .ccc-gift-badge{
    font-size:0 !important;
    display: inline-block !important;
}

.woocommerce-checkout .ccc-gift-badge:before{
    margin-right: 0 !important;
}

.cart-collaterals .shop_table,
.cart-collaterals .wc-proceed-to-checkout,
.cart-collaterals .woocommerce-info *{
	position:relative !important;
	z-index:9 !important;
}