html.cart-visible .cart-custom {
    opacity: 1;
	pointer-events: all;
}

.cart-custom {
    position: fixed;
    right: 0;
    z-index: 10000;
    top: 0;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    width: 500px;
    box-shadow: 0px 0px #00000070;
    padding: 25px 25px 25px;
    box-sizing: border-box;
    overflow: visible;
    border-color: inherit;
    background-color: #ffffff;
    overflow-y: auto;
    max-height: 100vh;
    display: flex;
	flex-direction: column;
    box-shadow: 0 0 7px -3px black;
    overflow-x: hidden;
	max-width: 100%;
	
}

.cart-inner {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    width: 100%;
}

html.cart-visible, html.cart-visible body {
    overflow: hidden;
}

.cart-totals-grid span {
	text-align: right;
}

.cart-totals-grid span:last-child {
	font-size: 22px;
	font-weight: 700;
}

html.cart-visible body:before {
    content: '';
    position: fixed;
    background: #ffffffcc;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
}

.totals-table {
    border-radius: 0;
    box-shadow: none;
	/*margin-top: auto;*/
}

.totals-table td {
    background: none;
    border: 0;
    padding: 0;
    font-size: 14px;
	padding-top: 5px;
}

.totals-label {
    color: #3C422E;
    text-align: left;
}

.totals-value {
    text-align: right;
}

td.totals-label-big, td.totals-value-big {
	padding-top: 10px;
    font-size: 18px;
	font-weight: 700;
}

.totals-label-big {
    font-weight: 500 !important;
}

.menu-item-cart-link span[data-cart-total-price] {
    display: none !important;
}

.menu-item-cart-link span[data-cart-total-items] {
    position: absolute;
    top: 50%;
    right: 0;
    padding: 0 !important;
    line-height: normal !important;
    font-weight: 700;
    background: #ffffff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 13px;
    text-align: center;
    transform: translateY(-50%);
    margin-top: 5px;
}

.menu-item-cart-link {
    position: relative;
}

.menu-item-cart-link {
    padding-left: 30px !important;
}

.cart-header {
	display: flex;
	justify-content: space-between;
}

.btn-cart-close {
    background: none;
    width: 40px;
    color: #6c6c6c;
    font-size: 37px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    cursor: pointer;
}

.cart-header h3 {
    font-size: 16px;
	margin-bottom: 0;
}

.cart-divider {
    background: #53A179;
    height: 6px;
    border-radius: 40px;
    margin-bottom: 30px;
}

.cart-custom img.product-image {
    width: 64px;
}

.cart-payments button {
    width: 100%;
    background: #FF6332;
    padding: 10px;
}

.cart-payments button img {
	height: 24px;
}

.cart-payments {
    /* margin-top: auto; */
    display: flex;
    flex-direction: column;
    row-gap: 15px;
	margin-bottom: 20px;
}

.cart-footer {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    column-gap: 10px;
	padding-top: 20px;
}

.cart-footer-column {
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.cart-footer-column span {
    font-size: 13px;
    color: #3C422E;
    line-height: 13px;
}

.cart-trust-pilot-img {
    height: 20px !important;
    object-fit: contain;
	margin-top: 5px;
}

.cart-custom.cart-payment-visible .cart-header.cart-header-paying,
.cart-custom.cart-payment-visible .cart-payments {
    display: flex !important;
}

.cart-custom.cart-payment-visible .cart-header.cart-header-default,
.cart-custom.cart-payment-visible #products-container,
.cart-custom.cart-payment-visible .btn-cart-buy-now {
	display: none !important;
}

#link-authentication-element {
    margin-top: 20px;
}

.btn-cart-buy-now {
    border-radius: 8px;
    font-size: 19px;
}

.cart-custom.cart-payment-visible .cart-header {
    display: none;
}

.cart-item {
    display: flex;
    column-gap: 12px;
}

.cart-item + .cart-item {
    margin-top: 10px;
}

.cart-item {}

.cart-item .cart-item-image {
    width: 120px;
    border-radius: 6px;
}

.cart-item-name {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 800;
}



[data-cart-item-remove] {
    cursor: pointer;
}

[data-cart-item-remove]:hover {
    text-decoration: underline;
}

.cart-loader {
	display: none;
}

html.cart-loading .cart-loader {
	display: block;
}	

html.cart-loading [data-shop-cart-items] {
	display: none;
}

.cart-item-dummy-string {
    color: transparent;
    border-radius: 10px;
    display: inline-block;
}
			
@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.animated-gradient-bg {
    background: linear-gradient(270deg, #eeeeee, #b9b9b9);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 1s ease infinite;
    -moz-animation: AnimationName 1s ease infinite;
    animation: AnimationName 1s ease infinite;
}

.checkout-fields-group {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-evenly;
}

.checkout-fields-group > * {
    !;!i;!;
    max-width: 100%;
    flex-grow: 1;
}

.checkout-fields-group input {
    width: 100%;
}

	#stripe-container {
        position: relative;
    }

    .adpulse-payment-loader-container {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000000ba;
        backdrop-filter: blur(5px);
        align-items: center;
        justify-content: center;
    }


    .adpulse-payment-verifying .adpulse-payment-loader-container {
        display: flex;
    }

    .adpulse-payment-loader {
        font-size: 10px;
        width: 1em;
        height: 1em;
        border-radius: 50%;
        position: relative;
        text-indent: -9999em;
        animation: mulShdSpin 1.1s infinite ease;
        transform: translateZ(0);
    }
    @keyframes mulShdSpin {
        0%,
        100% {
            box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.5), -1.8em -1.8em 0 0em rgba(255,255,255, 0.7);
        }
        12.5% {
            box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.5);
        }
        25% {
            box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.5), 1.8em -1.8em 0 0em rgba(255,255,255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
        }
        37.5% {
            box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.5), 2.5em 0em 0 0em rgba(255,255,255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
        }
        50% {
            box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.5), 1.75em 1.75em 0 0em rgba(255,255,255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
        }
        62.5% {
            box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.5), 0em 2.5em 0 0em rgba(255,255,255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
        }
        75% {
            box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.5), -1.8em 1.8em 0 0em rgba(255,255,255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
        }
        87.5% {
            box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.5), -2.6em 0em 0 0em rgba(255,255,255, 0.7), -1.8em -1.8em 0 0em #ffffff;
        }
    }
	
	