
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;
        }
    }
	
	
[data-currency="$"]:before {
    content: '$';
}



.product-row {
	position: relative;
}

/* valiutos */

[data-currency-type="GBP"] [data-currency]:before,
[data-currency-type="EUR"] [data-currency]:after {
    content: attr(data-currency);
    font-size: 14px;
    line-height: 11px;
    font-weight: normal;
    vertical-align: top;
    margin: 0 2px;
}

/* ------------ */
/* single/subscription tabs */

.grouped-products-nav > div {
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
	padding-left: 40px;
	position: relative;
}

.grouped-products-nav {
    display: flex;
    gap: 10px;
}

.grouped-products-nav .group-name {}

.grouped-products-nav .notes {
    color: grey;
}

.grouped-products-nav > div:not(.active) {
    background: #e1e1e1;
}

[data-active-product-group="subscription"] #product-list .product-row[data-product-purchase-type="single"] {
    display: none !important;
}
[data-active-product-group="single"] #product-list .product-row[data-product-purchase-type="subscription"] {
    display: none !important;
}

.grouped-products-nav > div:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px -2px #000000;
    position: absolute;
    left: 8px;
    top: 12px;
}

.grouped-products-nav > div.active:after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: #f46f6f;
    position: absolute;
    border-radius: 50%;
    top: 17px;
    left: 13px;
}

/* ------------ */

.checkout-totals-expandable.collapsed:not(.custom-totals) > div > div:not([data-adpulse-total="total"]) {
    display: none !important;
}

.checkout-totals-expandable.collapsed:not(.custom-totals) > #cart-summary > div:nth-of-type(12) {
    display: none !important;
}

.checkout-totals-expandable {
    background: white;
}

.checkout-totals-expandable.collapsed [data-adpulse-total="total"] {
    margin-bottom: 4px;
}

.checkout-totals-expandable:hover {
	cursor: pointer;
}

.checkout-totals-expandable [data-shop-cart-value="total"] {
    margin-right: 30px;
}

.checkout-totals-expandable:after {
    content: '';
    display: block;
    position: absolute;
    right: 16px;
    top: 14px;
    width: 12px;
    height: 12px;
    border: 3px solid #525252;
    border-width: 0 3px 3px 0px;
    transform: rotate(45deg) translate(0, 0);
}

.checkout-totals-expandable:not(.collapsed):after {
	transform: rotate(225deg) translate(-3px, -6px);
}
/* --- */

span.btn-purchase-sub-text {
    font-size: 12px;
}

.adpulse-btn-confirm-payment {
    flex-direction: column;
}

/* --- */

.product-granted-gifts {
    display: none;
}

.produce-per-unit-inc-bundle-items {
	display: none;
}

.product-description:after {
    display: block;
}

[data-adpulse-old-price-per-unit] {
    display: none;
}

/* --------- */

.adpulse-btn-continue-no-product {
    width: 100%;
    padding: 20px 0px;
    border-radius: 10px;
    font-weight: 900;
    color: #ffffff;
    background-color: #c8c8c8;
    border-bottom: 4px solid #ababab !important;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
	display: block;
	text-align: center;
}

.adpulse-btn-continue-to-checkout {
	width: 100%;
    padding: 20px 0px;
    border-radius: 10px;
    font-weight: 900;
    color: #ffffff;
    background-color: #60ce54;
    border-bottom: 4px solid #479c3f !important;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
	display: block;
	text-align: center;
}

/* --------- */

.swiper-container {
      width: 100%;
      height: 300px;
      margin-left: auto;
      margin-right: auto;
    }

    .swiper-slide {
      background-size: cover;
      background-position: center;
      border-radius: 5px;
    }
    
    .swiper-backface-hidden .swiper-slide {
    outline: 1px solid #00000057;
    outline-offset: -1px;
}

    .gallery-top {
      height: 80%;
      width: 100%;
     overflow-x: hidden;
    }

    .gallery-thumbs {
      height: 20%;
      box-sizing: border-box;
      padding: 10px 0;
      overflow: hidden;
		position: relative;
    }

.gallery-thumbs .swiper-wrapper {
    padding: 0 80px;
    box-sizing: border-box;
}

.swiper-button-next, .swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
    /* background: #a9a9a9; */
    bottom: 64px !important;
    top: unset;
}
    .gallery-thumbs .swiper-slide {
      height: 100%;
      opacity: 0.4;
    }

    .gallery-thumbs .swiper-slide-thumb-active {
      opacity: 1;
    }
.adpulse-gallery {
    height: 650px;
    width: 100%;
}

/*
.swiper-button-prev-thumb, .swiper-button-next-thumb {
    width: 50px;
    height: 50px;
    background: red;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}
*/

.swiper-button-next-thumb {
    right: 0;
}




/*- read more/less -*/
.text-clipped {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    display: none;
}

.text-clipped + .btn-read-more {
    display: inline;
}

.text-clipped + .btn-read-more + .btn-read-less {
    display: none;
}

/* --- */

/*[data-adpulse-total="gifts"] {
    display: none !important;
}*/

[data-adpulse-total-value="gift"] > * {
    display: block;
    text-align: right;
}

[data-adpulse-warranty-label] span[data-currency="£"]:before {
    content: "(£" attr(data-price) ")";
}

[data-adpulse-warranty-label] span[data-currency="£"] {
    margin-right:  auto;
    padding-left: 5px;
}

[data-adpulse-checkout-field="phone"] {
    width: 0;
    height: 0;
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    pointer-events: none;
}

.adpulse-card-icons {
    position: absolute;
    top: 36px;
    right: 7px;
	pointer-events: none;
}

.adpulse-cvv-icons {
    position: absolute;
    right: 8px;
    top: 49%;
    pointer-events: none;
}


.checkout-field-hidden-on-load {
	display: none
}

.checkout-secondary-fields {
    transition: height 0.5s ease-out;
    height: 0;
    overflow: hidden;
}

.stripe-checkbox-container input {
    width: 19px;
    width: 19px;
    height: 19px;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, .25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
    border-radius: .25em;
    display: inline-block;
}

.stripe-checkbox-container:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.stripe-checkbox-container input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.stripe-checkbox-style + label {
    line-height: 24px;
}

.stripe-checkbox-container input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

html .input-invalid {
    border: 1px solid red !important;
}


.billing-country-container {
	display: none
}

.adpulse-checkout-status.mobile-only {
    margin-top: 10px;
}

.adpulse-checkout-status.mobile-only > div {
text-align: center;
    background: #ff7474;
    color: white;
    padding: 10px;
}

[data-adpulse-product-extras] > div { display: flex;}

.produce-per-unit-inc-gifts {
display: none; }
.product-granted-gifts {
}

.adpulse-buy-product.disabled {
    pointer-events: none;
}

@media only screen and (min-width: 768px) {
.desktop-narrowed-down {
margin: 0 100px;	
}
	
	.mobile-only { display: none; }
}

.mobile-sticky-upsell-buttons {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999999999999999999;
    background: white;
    left: 0;
    text-align: center;
}

[data-adpulse-terms-and-conditions] {
    order: 8000;
}

.cart-header h3 {
    font-size: 16px;
    margin-bottom: 0;
    color: white;
}

#product-list .product-price[data-currency="€"]:after {
    content: attr(data-currency);
    font-size: 14px;
    line-height: 11px;
    font-weight: normal;
    vertical-align: top;
    margin-right: 2px;
}

#product-list .product-price[data-currency="€"]:before {
    display: none;
}

[data-express-checkout-element] {
    margin-top: 10px;
}

.toppings-mob {
	position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.bottoms-mob {
	position: fixed;
  bottom: 0;
  width: 100%;
	z-index: 1000;
}

.cart-item-name {
	font-size: 16px;
  line-height: 22px;
}

.cart-item-price {
	font-size: 15px;
}

[data-cart-item-remove] {
	font-size: 15px;
  line-height: 23px;
  color: #c12121;
  text-decoration: underline;
}

.glsr-default .glsr-review {
	  background-color: #f4f1ee;
    padding: 25px;
    border-radius: 10px;
}

.glsr-reviews {
	gap: 15px !important;
}


    [data-payment-loader] {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: inline-block;
        border-top: 3px solid #FFF;
        border-right: 3px solid transparent;
        box-sizing: border-box;
        animation: rotation 1s linear infinite;
			display: none;
    }

    [data-proceed-payment] [data-payment-loader] {
        
    }

    [data-proceed-payment]:disabled [data-payment-loader] {
       
			display: block;
    }

    @keyframes rotation {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }


.menu-item-cart-link path, .mobile-cart-icon path {
	stroke: white;
}

#Top_bar .menu {
	margin-right: 35px;
}

#Top_bar {
	backdrop-filter: blur(30px);
}

.menu-item-cart-link span[data-cart-total-items] {
	background: #313131 !important;
}

.header-fixed #Top_bar {
	opacity: 1;
}

body:not(.template-slider) #Header {
	min-height: 0px !important;
}

#Top_bar #menu  {
	background-color: #f4f1ee00 !important;
}

.sub-tabs {
	padding-right: 100px;
}

#Top_bar .menu > li > a span:not(.description) {
	border-right-width: 0px;
}

.stars-tagged {
	display: flex;
	justify-content: center;
	align-items: center;
}

.stars-tagged-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.stars-tagged-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.custom-quiz-product-tabs-switcher {
	row-gap: 10px !important;
}

.sub-links a {
	font-size: 16px !important;
}

.sub-links {
	gap: 10px !important;
}

.custom-quiz-product-tabs-switcher a {
	font-size: 21px !important;
	line-height: 31px !important;
}

.custom-horizontal-scroll > .section_wrapper {
	overflow-x: hidden !important;
}

body:not(.template-slider) #Header {
	min-height: 50px;
}

.pgcsimplygalleryblock-slider-item .pgcsimplygalleryblock-slider-main-wrap .pgcsimplygalleryblock-slider-item-wrap,
.round-image-class .image_wrapper {
	border-radius: 10px;
}

.custom-horizontal-scroll > div {
	padding: 0 20% 0 10%;
}

.dm-family-lite {
	font-family: "DM sans";
		font-weight: 400;
}

.dm-family-bold {
	font-family: "DM sans";
	font-weight: 700;
}

#Content {
	padding-top: 0;
}

[class^="icon-"]:before {
	margin-left: -4px;
	margin-right: -2px;
}

#Top_bar .menu {
    display: flex;
	    justify-content: center;
}

.menuo-right #Top_bar .menu_wrapper {
    float: unset;
}

#Top_bar .menu > li:last-child {
    margin-left: auto;
}

#Top_bar .menu > li:last-child {
    position: absolute;
    right: 0;
}



/* custom scrollable containers */

.custom-horizontal-scroll > .section_wrapper {
    width: 100%;
    overflow-x: scroll;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    user-select: none;
}

.custom-horizontal-scroll > .section_wrapper > div {
    min-width: 300px;
}

/* -- */

.custom-review {
    border: 2px solid #D6CDC0;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    background: #f4f1ee;
    transition: all 0.3s;
    height: 100%;
    width: 100%;
    transform: translateX(-100%);
    pointer-events: none;
    opacity: 0;
}

.custom-review img {
    width: 50%;
    object-fit: cover;
}

.custom-review-content {
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
	  width: 50%;
}

.custom-review-text {
    font-size: 20px;
    line-height: 29px;
    color: black;
    margin-bottom: 20px;
}

.custom-review-author {
    font-size: 18px;
    font-weight: 600;
    color: black;
}

.custom-review-navigation {
    display: flex;
    align-self: end;
		margin-top: auto;
}

.custom-review-navigation > button {
    background: none;
    width: auto;
    display: block;
    padding: 19px 30px;
    border: 1px solid #D6CDC0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-review-navigation > button:last-child {
    border-radius: 0 6px 6px 0;
}

.custom-review-navigation > button:first-child {
    border-radius: 6px 0 0 6px;
}

.custom-review-navigation > button + button {
    border-left: 0;
}

.custom-reviews-container {
    position: relative;
    overflow: hidden;
    height: 420px;
}

.custom-review.custom-review-active + .custom-review {
    transform: translateX(100%);
}

.custom-review.custom-review-active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

[data-adpulse-total-custom] {
    display: flex;

    .total-label {
        flex-grow: 1;
    }
    
    .total-value-cell {
        text-align: right;
    }
    
    .total-value-note {
        font-size: 13px;
    }
}

@media only screen and (max-width: 479px) {
.round-image-class .image_wrapper {
	border-radius: 0px;
}
	
	.highlight-left .wrap:first-child {
background: none;
}
	
	.highlight-left, .highlight-right .section_wrapper .wrap {
		padding: 0 20px;
	}
	
	.highlight-left .section_wrapper .wrap {
		padding: 0px;		
	}
	
	h1 {
		font-size: 32px !important;
		line-height: 42px !important;
	}
	
	.custom-review.custom-review-active {
		display: flex;
		flex-direction: column;
	}
	
	.custom-review {
    position: relative;
    grid-row-start: 1;
    grid-column-start: 1;
}

.custom-reviews-container {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
}
	
	.custom-review-content, .custom-review img {
		width: 100%;
	}
	
	.mobile-lighter {
		font-size: 26px;
		line-height: 34px;
	}
	
	.custom-quiz-product-tabs {
		flex-direction: column-reverse;
	}
	
	.custom-quiz-product-tabs-content, .custom-quiz-product-tabs-images {
		width: 100% !important;
	}
	
	.custom-quiz-product-tabs-switcher a {
		font-size: 18px !important;
		line-height: 26px;
		text-align: center;
	}
	
	.custom-quiz-product-tabs-switcher {
		row-gap: 10px !important;
	}
	
	.custom-quiz-product-tabs-nav {
		bottom: -33px !important;
	}
	
	.custom-quiz-product-tabs-switcher {
		margin-top: 60px;
		margin-bottom: 15px !important;
	}
	
	.sub-links a {
		font-size: 15px !important;
	}
	
	.mobile-z-redirect {
		z-index: 15 !important;
	}
	
	.widgets_wrapper .container {
		display: grid;
    grid-template-columns: 50% 50%;
}
	
	.class-display-none {
		display: none;
	}
	
	#Footer .footer_copy .one {
    margin-bottom: -8px;
	}
}



@media only screen and (max-width: 768px) {
	#Top_bar a.responsive-menu-toggle {
	    right: unset;
	    left: 10px;
	    top: 50%;
	}
	
	.mcb-column-inner-0u4uqna3v .adpulse-checkout-status {
    display: none;
}
	
	.custom-horizontal-scroll > .section_wrapper {
		overflow-x: scroll !important;
		max-width: calc(90%) !important;
	}
	
	.bordered-mobile .image_wrapper {
		border-radius: 15px;
	}
	
	.sub-links {
		justify-content: center;
	}
	
	.sub-tabs {
		padding: 20px;
    border: 2px solid #d5cdc1;
    border-radius: 5px;
		background-color: #f7f6f5;
	}
	
	.gallery-thumbs .swiper-slide {
		width: 55px !important;
		height: 55px;
	}
	
	.adpulse-gallery {
		height: 60vh;
	}
	
	.swiper-button-next, .swiper-button-prev {
		bottom: 52px !important;
	}
	
}

@media only screen and (max-width: 1240px) {

	.menu-item-cart {
		display: none !important;
	}

	.mobile-cart-icon {
		display: block !important;
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
	}
}

@media only screen and (max-width: 1240px) and (min-width: 769px) {

	#Top_bar a.responsive-menu-toggle {
		right: 50px;
	}
	
}

@media only screen and (min-width: 768px){

	/*
	.product-custom-scroll > div {
		flex-wrap: nowrap;
		display: flex;
		overflow-x: scroll;
	}

	.product-custom-scroll > div > div {
		float: unset;
		flex-shrink: 0;
	}
*/
}

@media only screen and (max-width: 767px){
	.product-custom-scroll > div {
			display: flex;
			flex-wrap: nowrap;
			overflow: scroll;
	}

	.product-custom-scroll > div > div {
			flex-shrink: 0;
	}
	
	#Top_bar a.responsive-menu-toggle {
		color: #9b9b9b;
	}
	
	.mobile-cart-icon path {
	stroke: #9b9b9b;
}
	
	.logo-mobile-sticky.scale-with-grid {
height: 37px;
	}
	
	#Side_slide {
		backdrop-filter: blur(20px);
		background-color: #19191978;
	}
	
	#Side_slide #menu ul li {
		border-top: 1px solid rgb(255 255 255 / 0%);
	}
	
	.sub-links a {
	font-size: 14px !important;
}

.custom-quiz-product-tabs-switcher a {
	font-size: 16px !important;
	line-height: 28px !important;
}
}

.product-custom-selector.active > div {
outline: 3px solid red;
}



.coupons-form {
    display: none;
}
.coupons-form {
    display: flex;
    border: 1px solid #E0E0E0;
    padding: 10px;
    border-radius: 5px;
}

.coupons-form input {
    background: none;
    margin: 0;
    width: 100%;
    font-size: 13px;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.coupons-form button {
    font-size: 12px;
    height: auto;
    padding: 5px 14px;
    background-color: grey;
    border-radius: 7px;
}
[data-adpulse-coupon-status] {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 13px;
    color: red;
    font-weight: 600;
}

[data-adpulse-total="coupons_total"] {
    
}

[data-adpulse-coupon-remove] {
    display: flex;
    font-size: 10px;
    line-height: 10px;
    gap: 5px;
    background: grey;
    border-radius: 4px;
    padding: 5px 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

[data-adpulse-coupon-list] {
    display: flex;
    gap: 5px;
}

[data-adpulse-coupon-remove] span {
    font-size: 12px;
}

[data-adpulse-total="coupons_total"] {
    display: flex;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    color: #6b6b6b;
    padding: 0px 10px 0px;
    border: 1px solid #e3e3e3;
    border-top: 0;
    border-bottom: 0;
    border-radius: 1px;
    order: 2;
}

#cart-summary {
    display: flex;
    flex-direction: column;
}

[data-adpulse-total="total"] {
    order: 1;
}

[data-adpulse-total="gifts"] {
    order: 2;
}

[data-adpulse-total="shipping"] {
    order: 3;
}

[data-adpulse-total="savings"] {
    order: 10;
}


.checkout-fields-group {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-evenly;
}

.checkout-fields-group > * {
    max-width: 100%;
    flex-grow: 1;
}

.checkout-fields-group select,
.checkout-fields-group input {
    width: 100%;
}

.adpulse-card-input {
                    background-color: #fff;
                    border: 1px solid #CCCCCC;
                    width: 100%;
                    color: #000;
                    font-weight: 400;
                    font-size: 17px;
                    padding: 10px 15px;
                }

                .adpulse-card-input-label {
                    font-weight: 600;
                    font-size: 17px;
                }



@media only screen and (max-width: 767px) {

.mobile-scrollable-1 .mcb-wrap-inner {
flex-wrap: nowrap;
        padding: 0 15px;
        overflow-x: visible;
        width: auto !important;
        /*padding-left: 200px !important;*/
animation: linear tw-rightToLeft 20s infinite;
	}

.mobile-scrollable-1 .mcb-wrap-inner > div {
            min-width: 300px;
}

.mobile-scrollable-1 > div {
    padding: 0 !important;
}
}


@keyframes tw-rightToLeft{
	0%{-webkit-transform:translateX(50%);transform:translate(50%)}to{
		-webkit-transform:translateX(-100%);
transform:translate(-100%)}
}

/* ---- */
/* produkto cart'e img  ir item'u counteris */

.cart-product-thumb img {
    display: block;
}

.cart-product-thumb:before {
    content: '1';
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 0 4px -2px black;
}

.cart-product-thumb {
    position: relative;
}

/* --- */

.checkout-totals-expandable.collapsed .coupons-form {
    display: none;
}

.checkout-totals-expandable.custom-totals.collapsed #cart-summary > div {
    display: none !important;
}

.checkout-totals-expandable.custom-totals.collapsed #cart-summary {
    display: flex !important;
}

.checkout-totals-expandable.custom-totals.collapsed [data-shop-cart-items],
.checkout-totals-expandable.custom-totals.collapsed [data-adpulse-coupon-status],
.checkout-totals-expandable.custom-totals.collapsed [data-adpulse-coupon-list] {
    display: none;
}

.checkout-totals-expandable-heading {
    display: flex;
    justify-content: space-between;
    background: #f6f6f6;
    border-top: 1px solid #a3a3a3;
    border-bottom: 1px solid #a3a3a3;
    padding: 15px 10px;
}

.checkout-totals-expandable:after {
    right: unset;
    left: 137px;
    top: 21px;
}

.checkout-totals-expandable.custom-totals [data-shop-cart-product-thumb] {
    display: block;
    width: 48px;
    height: 48px;
}

.checkout-totals-expandable-caret-right:after {
    left: unset !important;
    right: 17px !important;
}

.checkout-totals-expandable-caret-right .checkout-totals-expandable-heading {
    padding-right: 40px;
}

.checkout-totals-expandable-caret-right .checkout-totals-expandable-heading {
    justify-content: start;
    gap: 10px;
}

.checkout-totals-expandable-caret-right .checkout-totals-expandable-heading [data-adpulse-total-value="total"] {
    margin-left: auto;
}


.checkout-totals-expandable.custom-totals {
	position: relative;
}

/* --- */
/* accordian for payment methods */

.accordion-body {
    display: none;
}

.accordion-active .accordion-body {
    display: block;
}

/* --------- */
/* floating labels */


.floating-label {
  position: relative;
  margin: 16px 0;
}

.floating-label input,
.floating-label select {
  width: 100%;
  padding: 16px 12px 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: white;
}

/* label base */
.floating-label label {
  position: absolute;
  left: 12px;
  top: 16px;
  font-size: 16px;
  color: #777;
  pointer-events: none;
  transition: 0.2s ease;
  background: white;
  padding: 0 4px;
}

/* input floating */
.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
  top: -7px;
  font-size: 12px;
  color: #333;
}

/* select floating */
.floating-label select:focus + label,
.floating-label select:valid + label {
  top: -7px;
  font-size: 12px;
  color: #333;
}

/* remove default focus outline */
.floating-label input:focus,
.floating-label select:focus {
  outline: none;
  border-color: #4a7cff;
}

/* -- */

.floating-label-parent {
	position: relative;
	
	input {
		width: 100%;
		padding: 16px 12px 8px;
		font-size: 16px;
		border: 1px solid #ccc;
		border-radius: 4px;
		background: white;
		height: 49px;
	}
	
	label {
		position: absolute;
        left: 9px;
        top: 11px;
        color: #777;
        pointer-events: none;
        transition: 0.2s ease;
        padding: 0 4px;
        font-weight: 400;
        margin-right: 12px !important;
        font-size: 14px !important;
	}
	
	input:focus + button + label,
	input:not(:placeholder-shown) + button + label {
		top: 2px;
        font-size: 12px !important;
        font-weight: 400;
        color: #707070;
	}
	
	input:focus {
		outline: none;
		border-color: #4a7cff;
	}
	
	input:focus, 
	input:not(:placeholder-shown) {
		padding: 13px 12px 0px !important;
	}
}



/* --- */

.accordion-head {
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.accordion-tab .accordion-head:before {
    content: '';
    width: 21px;
    height: 21px;
    background-color: white;
	border: 1px solid #dfdfdf;
    display: block;
    position: absolute;
    left: 13px;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
}

.accordion-tab.accordion-active .accordion-head:before {
	background: #000;
	border-color: #000;
}

.accordion-tab.accordion-active .accordion-head:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    display: block;
    background: white;
    border-radius: 50%;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.checkout-fields-group {
	position: relative;
}
	
/* --- */

/* https://myhypha.com/uk/checkout-reishi-upd-sh-2/ */

.page-id-3877,
.page-id-3871 {

	[data-adpulse-coupon-input]:valid {
		color: black;
	}


	[data-adpulse-coupon-input]:valid + button {
		background-color: #ffce00 !important;
		color: black;
		border-color: transparent;
		opacity: 1;
	}

	.coupons-form button {
		font-size: 14px;
		font-weight: 600;
		opacity: 0.5;
		color: black;
		border-color: #dfdfdf;
		background-color: #f6f6f6;
	}

	.coupons-form input:focus {
		outline: 2px solid black;
	}

	[data-adpulse-coupon-status], [data-adpulse-coupon-list] {
		padding: 0 20px 0;
		margin-top: 0 !important;
	}
	
	.coupons-form {
		margin-bottom: 0;
	}
	
	[data-adpulse-coupon-list] {
		margin-bottom: 10px;
	}
	
	[data-shop-cart-items] {
		min-height: 65px;
	}
	
	[data-adpulse-coupon-remove] {
		margin-top: 10px;
	}
	
	
	.floating-label select,
	.floating-label input {
		height: 50px;
	}
	
	.floating-label select:focus,
	.floating-label select:valid,
	.floating-label input:focus,
	.floating-label input:not(:placeholder-shown)
	{
		padding-top: 16px !important;
        font-size: 14px;
        padding-bottom: 0 !important;
        font-weight: 400 !important;
	}
	
	.floating-label select:focus + label
	.floating-label select:valid + label
	.floating-label input:focus + label, 
	.floating-label select:not(:placeholder-shown) + label,
	.floating-label input:not(:placeholder-shown) + label {
		font-size: 12px !important;
		font-weight: 400;
		color: #707070;
		top: 3px;
		
	}
	
	.floating-label input:focus + label,
	.floating-label input:not(:placeholder-shown) + label {
	  top: 2px;
	  font-size: 12px !important;
	  color: #707070 !important;
	}

	
	.floating-label label {
		left: 8px;
		top: 12px;
		font-size: 16px;
		color: #777;
		background: transparent;
	}
	
	.floating-label input:focus,
	.floating-label select:focus {
		outline: 2px solid black;
        border-color: #d5e5ee;
	}
	
	
	.adpulse-card-input {
		font-size: 16px;
		border: 1px solid #ccc;
		border-radius: 4px;
		background: white;
		height: 50px;
	}

	.adpulse-card-input {
		padding-left: 11px;
	}

	.adpulse-card-input.StripeElement--complete,
	.adpulse-card-input.StripeElement--invalid,
	.adpulse-card-input.StripeElement--focus {
		padding-top: 23px;
	}
	
	.adpulse-card-input.StripeElement--focus {
		outline: 2px solid black;
	}
	
	.adpulse-card-input.StripeElement--invalid {
		outline: 2px solid red;
	}
	
	.adpulse-card-input.StripeElement--complete + label,
	.adpulse-card-input.StripeElement--invalid + label,
	.adpulse-card-input.StripeElement--focus + label {
		top: 2px;
        font-size: 12px !important;
        color: #707070 !important;
		font-weight: 400;
	}
	
	#stripe-parent-container .floating-label {
		margin-bottom: 15px !important;
	}
	
	.adpulse-card-input,
	.accordion-body {
		background: #f4f4f4;
	}
	
	.accordion-tab.accordion-active .accordion-head {
		border: 1px solid black;
	}
	
	.accordion-tab:not(:first-child).accordion-active .accordion-head {
		border-radius: 0;
	}
	
	.paypal-tab-placeholder {
		height: 92px;
		font-size: 14px;
		line-height: 21px;
		color: black;
		font-weight: 400;
	}
	
	.accordion-tab:last-child .accordion-body {
		border-radius: 0 8px 8px 0;
	}
	
	.accordion-head img {
		height: 20px;
	}
	
	.floating-label input, .floating-label select {
		border-radius: 8px;
	}
	
	.iti__selected-country-primary {
		/*
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		left: unset;
		z-index: 10;
		*/
	}

	.iti__selected-country-primary {
		
	}

	.iti__country-container {
		padding-top: 15px;
	}
	
	.mcb-wrap-de62d050c {
		width: 100% !important;
	}

	input.iti__tel-input {
		padding-left: 100px !important;
	}
	
	[data-shop-cart-items] .cart-item:before {
		content: attr(data-item-quantity);
		position: absolute;
		top: -4px;
		left: 46px;
		font-size: 12px;
		color: white;
		background-color: black;
		width: 24px;
		height: 24px;
		border-radius: 8px;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid white;
	}

	[data-shop-cart-items] .cart-item {
		position: relative;
	}
	
	
	
	
	input[type="checkbox"].custom-checkbox {
	  appearance: none;
	  background-color: white;
	  margin: 0;
	  font: inherit;
	  color: currentColor;
	  width: 20px;
	  height: 20px;
	  border: 1px solid currentColor;
	  border-radius: 0.15em;
	  transform: translateY(-0.075em);
	  display: grid;
	  place-content: center;
	  opacity: 0.3;
	}

	input[type="checkbox"].custom-checkbox::before {
	  content: "";
	  width: 8px;
	  height: 5px;
	  transform: scale(0);
	  transition: 120ms transform ease-in-out;
	  background-color: transparent;
	  border-left: 2px solid white;
	  border-bottom: 2px solid white;
	  transform: rotate(-45deg);
	  opacity: 0;
	}

	input[type="checkbox"].custom-checkbox:checked::before {
	  opacity: 1;
	}





	input[type="checkbox"].custom-checkbox:checked {
		background-color: black;
		opacity: 1;
	}
	
	.custom-checkbox-wrapper {
		display: flex;
		align-items: center;
		gap: 9px;
	}

	.checkout-totals-expandable-bottom .checkout-totals-expandable-heading {
		background: transparent;
		padding-right: 37px !important;
		border: none !important;
		padding-left: 0 !important;
		    align-items: center;
	}

	.checkout-totals-expandable-bottom [data-shop-cart-product-thumb] {
		width: 40px;
		height: 40px;
		border-radius: 7px;
		border: 1px solid #e7e7e7;
		padding: 1px;
	}
	
	.checkout-totals-expandable-bottom .checkout-totals-expandable-heading > div > div:last-child {
		font-size: 14px;
		font-weight: 400;
		color: #0000008f;
	}

	.checkout-totals-expandable-bottom .checkout-totals-expandable-heading > div {
		line-height: 21px;
		font-size: 19px;
	}

	.checkout-totals-expandable-bottom.checkout-totals-expandable-caret-right:after {
		top: 35px !important;
	}

	.checkout-totals-expandable-bottom:not(.collapsed) .checkout-totals-expandable-heading > * {
		display: none !important;
	}

	.checkout-totals-expandable-bottom:not(.collapsed) .checkout-totals-expandable-heading:before {
		content: 'Order summary';
		font-size: 21px;
		font-weight: 500;
	}
	
	.checkout-totals-expandable-bottom:not(.collapsed) .checkout-totals-expandable-heading {
		border: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.checkout-totals-expandable-bottom.checkout-totals-expandable-caret-right:not(.collapsed):after {
        top: 26px !important;
    }

	.checkout-totals-expandable-bottom .checkout-totals-expandable-heading > div[data-adpulse-total-value="total"]:before {
		content: 'GBP';
		color: #7a7a7a;
		background: #f6f6f6;
		font-size: 10px;
		padding: 4px 5px;
		border-radius: 10px;
		margin-right: 10px;
		position: relative;
		bottom: 3px;
	}

	.checkout-totals-expandable-bottom:not(.collapsed) > div {
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	.checkout-totals-expandable-bottom [data-accordion-extra="paypal"],
	.checkout-totals-expandable-bottom [data-accordion-extra="stripe"] {
		order: 1000;
	}
	
	.checkout-totals-expandable-bottom #cart-total-container {
		margin: 0 !important;
	}
	
	.checkout-totals-expandable-bottom [data-adpulse-total="total"] {
		font-size: 19px !important;
		font-weight: 600 !important;
	}
	
	.checkout-totals-expandable-bottom.collapsed .checkout-totals-expandable-heading {
		padding-bottom: 0 !important;
	}
	
	label.phone-custom-label {
		top: 2px !important;
		font-size: 12px !important;
		color: #707070 !important;
	}
	
	button.iti__selected-country {
		padding-left: 3px;
	}

	.iti .iti__selected-dial-code {
		font-size: 14px;
		font-weight: 400;
		margin-top: 3px;
	}
	
	
	#payment-methods > div {
		position: relative;
	}
	
	
	#payment-methods {
		overflow: hidden;
	}
	

}

/* ---- */
 
html:not(.adpulse-cart-not-empty) {
	
	.page-id-3877,
	.page-id-3871 {
		
		#payment-methods:before {
			content: '';
			width: 100%;
			height: 100%;
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			z-index: 10;
			border-radius: 10px;
		}
		
		#payment-methods {
			min-height: 124px;
		}
		
		.checkout-totals-expandable-heading div {
			color: transparent !important;
			border-radius: 10px;
		}
		
		#payment-methods:before,
		.checkout-totals-expandable-heading div
		{
			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-totals-expandable:after {
			display: none !important;
		}
	
	}
}
 