/*
Theme Name:		ThePassionBloom
Description:	ThePassionBloom Theme
Theme URI:		https://thepassionbloom.com
Theme Author:	KevinGiu
Author URI:		https://kevingiu.com
Template:		bricks
Version:		1.0.0
Text Domain:	bricks
*/







/* ----------------------- */
/* ------- GENERAL ------- */
/* ----------------------- */


html {
	scroll-behavior: smooth;
	scroll-padding-top: 70px;
}

body {
	min-height: 100vh;
	position: relative;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.brxe-text h4,
.brxe-post-content h4 {
    margin-top: 40px;
    margin-bottom: 15px;
}
.brxe-text h4:first-child,
.brxe-post-content h4:first-child  {
    margin-top: 0;
}

.brxe-button i {
    padding-bottom: 5px;
}


/* Preloader */


body {
	opacity: 0;
	transition: .3s;
}
body.loaded {
	opacity: 1;
}


/* Scrollbar */


::-webkit-scrollbar {
    width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--background-top-alt);
    border-radius: 100px;
}
::-webkit-scrollbar-thumb {
    background: #ffeeee22;
    border-radius: 100px;
}


/* Popup fix */


.brx-popup:not(.brx-infobox-popup):not(.brx-infobox-popup-builder) .brx-popup-content.brx-animate-fadeOut + .brx-popup-backdrop {
    opacity: 0;
}


/* Google translate */


.gtranslate_wrapper #gt_float_wrapper {
	bottom: 10px !important;
	left: 10px !important;
}

.gtranslate_wrapper .gt_float_switcher {
	display: block;
	border-radius: 10px;
	box-shadow: none !important;
	background: var(--background-top) !important;
	font-size: 0;
	padding: 5px 0;
}

.gtranslate_wrapper .gt-selected {
	background: var(--background-top) !important;
}
.gtranslate_wrapper .gt-selected div {
	padding: 5px 6px 5px 10px !important;
}
.gtranslate_wrapper .gt-selected div span {
	display: none !important;
}

.gtranslate_wrapper .gt_options a {
	font-size: 0;
	padding: 5px 2px 5px 10px !important;
	opacity: .8;
	transition: .2s !important;
}
.gtranslate_wrapper .gt_options a:hover {
	background: transparent !important;
	opacity: 1;
}


/* Falling petals */


.dot{
  width:48px;
  height:48px;
  position:absolute;
  background: url(/wp-content/uploads/2026/01/pink-blur.png);
  background-size: 100% 100%;
}







/* -------------------------- */
/* ------- ANIMATIONS ------- */
/* -------------------------- */


@keyframes fadeInUpX {
    0% {
        opacity: 0;
        transform: translateY(50px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}
.brx-animate-fadeInUp {
    animation-name: fadeInUpX !important;
}

.slide-anim-fadeinup {
	opacity: 0;
}
.is-visible .slide-anim-fadeinup {
    animation: fadeInUpX 1s;
	animation-fill-mode: forwards;
}


@keyframes fadeInDownX {
    0% {
        opacity: 0;
        transform: translateY(-50px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}
.brx-animate-fadeInDown {
    animation-name: fadeInDownX !important;
}

.slide-anim-fadeindown {
	opacity: 0;
}
.is-visible .anim-fadeindown {
    animation: fadeInDownX 1s;
	animation-fill-mode: forwards;
}


@keyframes fadeInLeftX {
    0% {
        opacity: 0;
        transform: translateX(-100px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}
.brx-animate-fadeInLeft {
    animation-name: fadeInLeftX !important;
}

.slide-anim-fadeinleft {
	opacity: 0;
}
.is-visible .slide-anim-fadeinleft {
    animation: fadeInLeftX 1s;
	animation-fill-mode: forwards;
}


@keyframes fadeInRightX {
    0% {
        opacity: 0;
        transform: translateX(100px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}
.brx-animate-fadeInRight {
    animation-name: fadeInRightX !important;
}

.slide-anim-fadeinright {
	opacity: 0;
}
.is-visible .slide-anim-fadeinright {
    animation: fadeInRightX 1s;
	animation-fill-mode: forwards;
}


@keyframes zoomInX {
    0% {
        opacity: 0;
        transform: scale(.75)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}
.brx-animate-zoomIn {
    animation-name: zoomInX !important;
}

.slide-anim-zoomin {
	opacity: 0;
}
.is-visible .slide-anim-zoomin {
    animation: zoomInX 1s;
	animation-fill-mode: forwards;
}


@keyframes zoomOutX {
    0% {
        opacity: 0;
        transform: scale(1.25)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}
.brx-animate-zoomOutX {
    animation-name: zoomOutX !important;
}

.slide-anim-zoomout {
	opacity: 0;
}
.is-visible .slide-anim-zoomout {
    animation: zoomOutX 1s;
	animation-fill-mode: forwards;
}


@keyframes kenburns {
	0% {
	transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
.anim-kenburns {
	animation: kenburns 7s infinite ease-in-out alternate;
}

@keyframes float {
    0%   { transform: translateY(10px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(10px); }
}
.anim-float {
	animation: float 4s infinite ease-in-out;
}


.anim-delay100 { animation-delay: .1s !important; }
.anim-delay200 { animation-delay: .2s !important; }
.anim-delay300 { animation-delay: .3s !important; }
.anim-delay400 { animation-delay: .4s !important; }
.anim-delay500 { animation-delay: .5s !important; }
.anim-delay600 { animation-delay: .6s !important; }
.anim-delay700 { animation-delay: .7s !important; }
.anim-delay800 { animation-delay: .8s !important; }
.anim-delay900 { animation-delay: .9s !important; }
.anim-delay1000 { animation-delay: 1s !important; }

@media screen and (max-width: 767px) {
	.anim-delay100 { animation-delay: 0s !important; }
	.anim-delay200 { animation-delay: 0s !important; }
	.anim-delay300 { animation-delay: 0s !important; }
	.anim-delay400 { animation-delay: 0s !important; }
	.anim-delay500 { animation-delay: 0s !important; }
	.anim-delay600 { animation-delay: 0s !important; }
	.anim-delay700 { animation-delay: 0s !important; }
	.anim-delay800 { animation-delay: 0s !important; }
	.anim-delay900 { animation-delay: 0s !important; }
	.anim-delay100 { animation-delay: 0s !important; }
}







/* -------------------------- */
/* ------- CONTACT US ------- */
/* -------------------------- */



/* Form */


.brxe-form .message.success {
    background: var(--bricks-text-success);
    color: #ffffff;
    font-weight: 600;
    border-radius: calc(var(--border-radius-primary)/2);
}







/* -------------------------------*/
/* ------- MultiStep Form ------- */
/* -------------------------------*/


/* General */

body:not([data-builder-window="iframe"]) .brcs-multistepform .brcs-multistepform-form {
	width: 100%;
	display: grid;
	grid-template-areas: "main";
	position: relative;
	align-items: center;
}

body:not([data-builder-window="iframe"]) .brcs-multistepform .brcs-multistepform-form .brcs-multistepform-step {
	grid-area: main;
	opacity: 0;
	transition: opacity 0s;
	visibility: hidden;
	padding: 10px 0;
}

body:not([data-builder-window="iframe"]) .brcs-multistepform .brcs-multistepform-form .brcs-multistepform-step.active {
	opacity: 1;
	z-index: 1;
	transition: opacity 1s;
	visibility: visible;
}

body:not([data-builder-window="iframe"]) .brcs-multistepform .brcs-multistepform-form .message,
body:not([data-builder-window="iframe"]) .brcs-multistepform .brcs-multistepform-form > .form-group,
body:not([data-builder-window="iframe"]) .brcs-multistepform .brcs-multistepform-form .form-group.submit-button-wrapper {
	display: none;
}


/* Progress Bar */

.brcs-multistepform .brcs-multistepform-progress.disabled {
	opacity: 0;
	pointer-events: none !important;
}


/* Navigation */

.brcs-multistepform .brcs-multistepform-nav.disabled {
	opacity: 0;
	pointer-events: none !important;
}


/* labels */

.brcs-multistepform ul.options-wrapper {
    display: grid;
    gap: var(--gap-secondary);
	grid-template-columns: repeat(auto-fit, minmax(calc(20% - 30px), 1fr));
}

.brcs-multistepform ul.options-wrapper > li {
    display: flex;
}

@media screen and (max-width: 648px) {
	.brcs-multistepform ul.options-wrapper {
		grid-template-columns: 1fr;
	}
	.brcs-multistepform .brcs-multistepform-step:nth-child(12) ul.options-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(calc(50% - 30px), 1fr));
		max-height: 50vh;
		overflow-y: scroll;
	}
}

.brcs-multistepform input[type="radio"],
.brcs-multistepform input[type="checkbox"]  {
    display: none;
}
.brcs-multistepform input[type="radio"] + label,
.brcs-multistepform input[type="checkbox"] + label {
    width: 100%;
    padding: 10px 15px;
    border-radius: var(--border-radius-secondary);
    border: 2px solid #e6e6e6;
    position: relative;
    overflow: hidden;
    transition: .3s;
    margin: 0;
}
.brcs-multistepform input[type="checkbox"] + label {
	padding: 0px;
}
.brcs-multistepform input[type="radio"] + label:hover,
.brcs-multistepform input[type="checkbox"] + label:hover {
    border-color: var(--color-secondary);
}
.brcs-multistepform input[type="radio"]:checked + label,
.brcs-multistepform input[type="checkbox"]:checked + label {
    border-color: var(--color-secondary);
}
.brcs-multistepform input[type="radio"] + label:before,
.brcs-multistepform input[type="checkbox"] + label:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    opacity: 0;
    transition: .3s;
}
.brcs-multistepform input[type="radio"]:checked + label:before,
.brcs-multistepform input[type="checkbox"]:checked + label:before {
    opacity: .1;
}

.brcs-multistepform input[type="radio"] + label img,
.brcs-multistepform input[type="checkbox"] + label img {
	width: 100%;
}


/* Files */


.brcs-multistepform .form-group.file {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}
.brcs-multistepform .form-group.file > label:first-child {
	width: 100%;
	padding-bottom: 0 !important;
}
.brcs-multistepform .form-group.file > input {
	display: none;
}

.brcs-multistepform label.choose-files,
.brcs-multistepform .file-result.show {
    background: var(--background-bottom);
    border: none;
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-tertiary) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}
.brcs-multistepform label.choose-files {
    font-size: 40px;
    color: var(--color-secondary);
}

.brcs-multistepform .file-result.show {
    font-size: 10px;
    flex-direction: column-reverse;
    margin: 0;
}

.brcs-multistepform .file-result.show span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}

.brcs-multistepform .file-result.show button {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    font-size: 0;
    padding: 0;
    transform: rotate(45deg);
}
.brcs-multistepform .file-result.show button:before {
    content: '+';
    font-size: 40px;
    height: 100%;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Contact */


.brcs-multistepform .brcs-multistepform-step:nth-child(13) {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.brcs-multistepform .brcs-multistepform-step:nth-child(13) .form-group:nth-child(1) {
	width: 100%;
}

.brcs-multistepform .brcs-multistepform-step:nth-child(13) .form-group:nth-child(n+2) {
	width: calc(33.3333% - 13.3333px); 
}

@media screen and (max-width: 648px) {
	.brcs-multistepform .brcs-multistepform-step:nth-child(13) .form-group:nth-child(n+2) {
		width: 100%;
		margin-bottom: -10px
	}
}






/* --------------------------- */
/* ------- WOO GENERAL ------- */
/* --------------------------- */



/* Inputs */


body:not(.yith-frontend-manager-for-woocommerce) input:not(.qty),
body:not(.yith-frontend-manager-for-woocommerce) textarea,
body:not(.yith-frontend-manager-for-woocommerce) .select2-container--default .select2-selection--single {
    background: var(--background-bottom-alt);
	border-radius: var(--border-radius-tertiary);
    border: none !important;
}

body:not(.yith-frontend-manager-for-woocommerce) input[type="radio"],
body:not(.yith-frontend-manager-for-woocommerce) input[type="checkbox"] {
    transform: scale(1.2);
    transform-origin: left 75%;
    filter: hue-rotate(137deg);
}

body:not(.yith-frontend-manager-for-woocommerce) .select2-container--default .select2-dropdown {
	z-index: 10;
    background: #f2f0f0;
	border: none !important;
}

body:not(.yith-frontend-manager-for-woocommerce) .select2-search__field {
    background: var(--background-default);
}

body:not(.yith-frontend-manager-for-woocommerce) .select2-container--default .select2-dropdown .select2-results__option[aria-selected=true],
body:not(.yith-frontend-manager-for-woocommerce) .select2-container--default .select2-dropdown .select2-results__option[data-selected=true] {
    background: var(--background-bottom);
	color: initial;
}

input::placeholder,
textarea::placeholder {
}

.woocommerce-account form .show-password-input {
	background: transparent;
}



/* Notices */


.brxe-woocommerce-notice .woocommerce-message {
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 20px;
    text-align: center;
}

.brxe-woocommerce-notice .woocommerce-message .woocommerce-notices-actions {
    flex-wrap: nowrap;
    display: flex;
    gap: 10px;
}

.brxe-woocommerce-notice .woocommerce-message .woocommerce-notices-actions a{
	margin: 0;
}







/* ---------------------------- */
/* ------- WOO MINICART ------- */
/* ---------------------------- */



/* Title */


.brxe-woocommerce-mini-cart .off-canvas:before {
    content: 'Cart';
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 10px;
    line-height: 14px;
    font-size: 22px;
    font-weight: 600;
}



/* Items */


li.woocommerce-mini-cart-item {
    display: flex;
    flex-direction: column;
    padding: calc(var(--gap-primary) / 2);
	padding-right: 80px !important;
    border-radius: calc(var(--border-radius-primary) / 2);
    background: var(--background-top);
    margin-right: 20px;
}
li.woocommerce-mini-cart-item:last-child {
	margin-bottom: 0 !important;
}

li.woocommerce-mini-cart-item a.remove {
    right: 12px !important;
    top: 0;
    z-index: 1;
    border-radius: 100%;
    width: 30px !important;
    height: 30px !important;
    font-size: 30px !important;
    line-height: 17px !important;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 0px;
}

li.woocommerce-mini-cart-item img,
li.woocommerce-mini-cart-item a:not(.remove) img {
    position: absolute;
    right: 0px;
    width: 55px;
	top: 50%;
	transform: translateY(-50%);
}


li.woocommerce-mini-cart-item .variation {
	padding-top: 10px;
    order: 1;
	font-size: 80% !important
}

li.woocommerce-mini-cart-item .variation dt {
    margin-top: 5px !important;
}
li.woocommerce-mini-cart-item .variation dd p {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}
li.woocommerce-mini-cart-item .variation dd p br {
	display: none
}



/* Subtotal */


.woocommerce-mini-cart__total {
	border: none !important;
}







/* ------------------------ */
/* ------- WOO CART ------- */
/* ------------------------ */



/* General */


.blockUI.blockOverlay {
    backdrop-filter: blur(3px) !important;
    opacity: 1 !important;
    background: #FFFFFF14 !important;
}
brxe-container .blockUI.blockOverlay {
    width: calc(100% + 40px) !important;
    height: calc(100% + 40px) !important;
    top: -20px !important;
    left: -20px !important;
}



/* Cart Summary */


body.woocommerce-cart form.woocommerce-cart-form table.shop_table th:not(:first-child):not(:last-child) {
    padding: 0 10px;
}
body.woocommerce-cart form.woocommerce-cart-form table.shop_table td:not(:first-child):not(:last-child) {
    padding: 15px 10px;
}

body.woocommerce-cart form.woocommerce-cart-form table.shop_table th:nth-last-of-type(-n+3),
body.woocommerce-cart form.woocommerce-cart-form table.shop_table td:nth-last-of-type(-n+3) {
    text-align: center !important;
}
body.woocommerce-cart form.woocommerce-cart-form table.shop_table thead th:last-of-type,
body.woocommerce-cart form.woocommerce-cart-form table.shop_table td:last-of-type {
    text-align: right !important;
}
body.woocommerce-cart form.woocommerce-cart-form table.shop_table td.product-thumbnail {
	min-width: 100px
}

body.woocommerce-cart form.woocommerce-cart-form table.shop_table tbody .product-name {
	text-align: left !important;
}
body.woocommerce-cart form.woocommerce-cart-form table.shop_table tbody .product-name dl.variation {
	margin: 0;
	font-size: 90%;
	font-weight: 600;
}

body.woocommerce-cart form.woocommerce-cart-form table.shop_table td .quantity {
	width: 140px !important;
	margin: 0 auto;
}
body.woocommerce-cart form.woocommerce-cart-form table.shop_table td .quantity .action.minus {
	border-radius: calc(var(--border-radius-primary) / 2) 0 0 calc(var(--border-radius-primary) / 2);
}
body.woocommerce-cart form.woocommerce-cart-form table.shop_table td .quantity .action.plus {
	border-radius: 0 calc(var(--border-radius-primary) / 2) calc(var(--border-radius-primary) / 2) 0;
}

.woocommerce-cart-form button[type=submit]:disabled {
    background-color: var(--color-primary) !important;
    opacity: .4;
}


@media screen and (max-width: 767px) {
	body.woocommerce-cart form.woocommerce-cart-form table.shop_table tr.cart_item {
		border-bottom: 1px solid var(--bricks-border-color);
		display: flex;
		flex-direction: column;
		margin-bottom: 20px;
	}
	body.woocommerce-cart form.woocommerce-cart-form table.shop_table td {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	body.woocommerce-cart form.woocommerce-cart-form table.shop_table td.product-remove {
		position: absolute;
		left: 15px
	}
	body.woocommerce-cart form.woocommerce-cart-form table.shop_table td.product-thumbnail {
		background: var(--background-top);
	}
	body.woocommerce-cart form.woocommerce-cart-form table.shop_table td.product-thumbnail img {
		max-width: 200px;
		margin: 0 auto
	}
	body.woocommerce-cart form.woocommerce-cart-form table.shop_table td.product-name:before {
		display: none;
	}
	body.woocommerce-cart form.woocommerce-cart-form table.shop_table td .quantity {
		margin: 0;
	}
}



/* Cart Totals */


body.woocommerce-cart .cart_totals tr th {
    vertical-align: top;
}

body.woocommerce-cart .cart_totals tr td:last-child {
    text-align: right;
}

body.woocommerce-cart .cart_totals tr td ul#shipping_method li {
    margin-bottom: 0 !important;
}
body.woocommerce-cart .cart_totals tr td ul#shipping_method li label {
    line-height: 30px !important;
}

body.woocommerce-cart .cart-collaterals .button {
    width: 100%;
    line-height: 28px !important;
}







/* ---------------------------- */
/* ------- WOO CHECKOUT ------- */
/* ---------------------------- */



/* Billing details */


.woocommerce-checkout .optional,
.woocommerce-checkout .checkout-inline-error-message {
	display: none;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #shipping_country_field {
	order: 1;
}
.woocommerce-checkout #billing_country_field strong,
.woocommerce-checkout #shipping_country_field strong {
    background: #671d1d0f;
    line-height: 40px;
    display: block;
    padding: 0 12px;
    font-weight: inherit;
}

.woocommerce-checkout #shipping_state_field {
	margin-bottom: 1.2em;
}
.woocommerce-checkout .woocommerce-account-fields {
	margin-top: 1.2em;
}

.woocommerce-checkout #billing_phone_field,
.woocommerce-checkout #shipping_phone_field,
.woocommerce-checkout #billing_email_field,
.woocommerce-checkout #shipping_email_field {
	order: 2;
}

.woocommerce-checkout .woocommerce-shipping-fields {
    margin: 40px 0 !important
}

.woocommerce-checkout .woocommerce-shipping-fields > h3 {
    margin-bottom: 30px;
}

.woocommerce-checkout .woocommerce-shipping-fields > h3 label {
    font-weight: 500 !important;
    font-size: 24px !important;
}

.woocommerce-checkout .woocommerce-shipping-fields > h3 input {
    margin-top: 2px;
}



/* Your order */


body.woocommerce-checkout .woocommerce-checkout-review-order-table,
body.woocommerce-checkout .woocommerce-checkout-payment {
    border: none !important;
	//background: var(--background-top);
    display: flex;
	flex-direction: column;
    //padding: 0 calc(var(--gap-primary) / 2) !important;
    border-radius: calc(var(--border-radius-primary) / 2);
}
body.woocommerce-checkout .woocommerce-checkout-payment {
    //padding: calc(var(--gap-primary) / 2) !important;
}


body.woocommerce-checkout .woocommerce-checkout-review-order-table tr {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.cart_item {
    border-bottom: 1px solid var(--bricks-border-color);
}


body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
	border: none !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order-table th:last-child,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td:last-child {
	text-align: right !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr:last-child td {
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot {
	border: none !important;
}


body.woocommerce-checkout .woocommerce-checkout-payment ul.wc_payment_methods:before {
    content: 'Payment method';
    font-weight: 600;
    font-size: 21px;
    padding-bottom: 15px;!i;!;
    display: block;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--bricks-border-color);
}

.woocommerce-checkout .woocommerce-account-fields .woocommerce-password-strength {
	font-size: 0 !important;
}



/* Payment methods */


li.wc_payment_method label {
    display: flex;
    justify-content: space-between;
    gap: 7px;
}

li.wc_payment_method label img {
    display: none;
}

li.wc_payment_method label:after {
    content: "";
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    width: 135px;
    height: 20px;
}

li.wc_payment_method.payment_method_twint_regular label:after {
    background-image: url('/wp-content/themes/thepassionbloom/images/payment-twint.png');
}
li.wc_payment_method.payment_method_ppcp-card-button-gateway label:after {
    background-image: url('/wp-content/themes/thepassionbloom/images/payment-card.png');
}
li.wc_payment_method.payment_method_ppcp-gateway label:after {
    background-image: url('/wp-content/themes/thepassionbloom/images/payment-paypal.png');
}







/* ---------------------------------------------- */
/* ------- WOO ORDER RECEIVED AND RECEIPT ------- */
/* ---------------------------------------------- */


body.woocommerce-order-received .brxe-woocommerce-checkout-thankyou {
    display: flex;
    flex-direction: column;
}


body.woocommerce-order-received .brxe-woocommerce-checkout-thankyou .woocommerce-notice {
    font-size: 26px;
    font-weight: 600;
}
body.woocommerce-view-order .woocommerce-MyAccount-content > p {
	font-size: 18px
}
body.woocommerce-view-order .woocommerce-MyAccount-content > p mark {
	background: var(--background-top);
	color: inherit;
	padding: 5px 10px;
	border-radius: calc(var(--border-radius-primary)/2);
	font-weight: 600;
}

body.woocommerce-order-received .brxe-woocommerce-checkout-thankyou .woocommerce-order-overview {
    background: var(--background-top);
    border-radius: var(--border-radius-primary);
    padding: calc(var(--gap-primary)/1.5) var(--gap-primary);
    display: flex;
    border: none;
    justify-content: space-around;
    align-self: center;
    gap: var(--gap-primary);
}

body.woocommerce-order-received .brxe-woocommerce-checkout-thankyou .woocommerce-order-overview li {
    border: none;
    padding: 0;
    display: inline;
    font-size: 110%;
}
body.woocommerce-order-received .brxe-woocommerce-checkout-thankyou .woocommerce-order-overview li.woocommerce-order-overview__total,
body.woocommerce-order-received .brxe-woocommerce-checkout-thankyou .woocommerce-order-overview li.woocommerce-order-overview__payment-method {
    display: none;
}

body.woocommerce-order-received .brxe-woocommerce-checkout-thankyou .woocommerce-order-overview li strong {
    padding-left: 5px;
}


.woocommerce-order-details h2 {
    display: none
}

.woocommerce-order-details table {
    padding-top: calc(var(--gap-primary) * 1.2);
    display: flex;
    border: none;
    gap: var(--gap-primary);
    align-items: flex-start;
    padding: 0;
    border: none !important;
	margin-top: var(--gap-primary);
}


.woocommerce-order-details table tbody,
.woocommerce-order-details table tfoot {
    background: var(--background-top) !important;!i;!;
    border-radius: var(--border-radius-primary);
    padding: var(--gap-primary);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--gap-primary);
}


.woocommerce-order-details table tbody {
    width: 70%;;
}

.woocommerce-order-details table tbody tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap-primary);
    padding-bottom: var(--gap-primary);
    position: relative;
}
.woocommerce-order-details table tbody tr:last-child {
    padding: 0;
    border: none;
}


.woocommerce-order-details table tbody tr td {
    padding: 0;
    border: none;
}

.woocommerce-order-details table tbody tr td.product-name {
    position: relative;
    flex-grow: 1;
    flex-basis: 0;
	border: none;
	padding: 0
}
.woocommerce-order-details table tbody tr td.product-name > a {
    font-weight: 600;
    font-size: 120%;
}
.woocommerce-order-details table tbody tr td.product-name > strong {
    background: var(--background-top);
    font-size: 120%;
}
.woocommerce-order-details table tbody tr td.product-name > ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 0;
    max-width: calc(100% - 130px - 20px - 130px - 20px);
}
.woocommerce-order-details table tbody tr td.product-name > ul li {
    display: flex;
    white-space: nowrap;
    gap: 10px;
    font-size: 80%;
}
.woocommerce-order-details table tbody tr td.product-name > ul li p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.woocommerce-order-details table tbody tr td.product-name > ul li p br {
	display: none;
}

.woocommerce-order-details table tbody tr td.product-name .nbd-order-upload-file {
    display: flex;
    position: absolute;
    height: calc(100% - 30px);
    height: 100%;
    right: 0;
    bottom: 0;
    align-items: center;
}
.woocommerce-order-details table tbody tr td.product-name .nbd-order-upload-file img {
    margin: 0 0 0 20px !important;
    border-radius: calc(var(--border-radius-primary)/2);
    max-height: 130px;
    max-width: 130px;
}
.woocommerce-order-details table tbody tr td.product-name .nbd-order-upload-file img:nth-of-type(n+3),
.woocommerce-order-details table tbody tr td.product-name .nbd-order-upload-file p {
    display: none;
}

.woocommerce-order-details table tbody tr td.product-total {
    flex-basis: 0;
    white-space: nowrap;
    font-weight: 600;
    font-size: 120%;
	border: none;
	padding: 0
}


.woocommerce-order-details table tfoot {
    width: 30%;
    position: sticky !important;
    top: 128px;
	border: none !important;
	padding: var(--gap-primary) !important;
}
.woocommerce-order-details table tfoot:not(:last-child) {
	display: none !important;
}

.woocommerce-order-details table tfoot tr {
    display: flex;
    justify-content: space-between;
    gap: var(--gap-primary);
}
    
.woocommerce-order-details table tfoot tr th {
    padding: 0 !important;
}

.woocommerce-order-details table tfoot tr td {
    padding: 0 !important;
    text-align: right;
}


.woocommerce-customer-details {
    background: var(--background-top);
    border-radius: var(--border-radius-primary);
    padding: var(--gap-primary);
}

.woocommerce-customer-details > section {
    gap: var(--gap-primary);
}

.woocommerce-customer-details h2 {
    font-size: 28px;
    padding-bottom: calc(var(--gap-primary)/2);
}

.woocommerce-customer-details address {
    background: var(--background-top);
    border-radius: calc(var(--border-radius-primary)/2);
    padding: calc(var(--gap-primary)/2);
}


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

    .woocommerce-order-overview {
        flex-direction: column;
        align-self: flex-start;
        width: 100%;
    }
    
    .woocommerce-order-details table {
        flex-direction: column;
    }
    .woocommerce-order-details table tbody,
    .woocommerce-order-details table tfoot {
        width: 100%;
    }
    
}


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

    .woocommerce-order-details table tbody tr td.product-name {
        width: 100%;
    }
    .woocommerce-order-details table tbody tr td.product-name ul {
        max-width: 100%;
    }
    .woocommerce-order-details table tbody tr td.product-total {
        position: absolute;
        top: 0;
        right: 0;
        text-align: right;
    }
    .woocommerce-order-details table tbody tr td.product-name .nbd-order-upload-file {
        position: relative;
    }
    .woocommerce-order-details table tbody tr td.product-name .nbd-order-upload-file img {
        width: 0;
        flex-grow: 1;
        margin-top: 20px !important;
        
    }
    .woocommerce-order-details table tbody tr td.product-name .nbd-order-upload-file img:first-of-type {
        margin-left: 0 !important;
    }
    

    .woocommerce-customer-details > section {
        flex-direction: column;
    }
    
}







/* ------------------------------ */
/* ------- WOO MY ACCOUNT ------- */
/* ------------------------------ */



/* Navegation */


.woocommerce-account .woocommerce:not(#brx-content) {
	align-items: flex-start;
}
.woocommerce-account:not(.yith-frontend-manager-for-woocommerce) .woocommerce-MyAccount-navigation {
    background: var(--background-top) !important;
    border-radius: var(--border-radius-primary);
    //padding: calc(var(--gap-primary)/2);
    height: auto;
    position: sticky;
    top: 128px;
    width: 240px;
    min-width: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active{
    background: var(--background-top);
    border-radius: calc(var(--border-radius-primary)/2);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul a {
    //padding: 0 calc(var(--gap-primary)/2);
}

@media screen and (max-width: 767px) {
	.woocommerce-account .woocommerce-MyAccount-navigation {
		position: relative;
		top: 0;
		width: 100%;
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		width: 100%;
	}
}



/* General */


.woocommerce-account.woocommerce-orders .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-content > .container-design,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
.woocommerce-account .woocommerce-MyAccount-content > p,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
    background: var(--background-top) !important;
    border-radius: var(--border-radius-primary);
    padding: var(--gap-primary);
}
.woocommerce-account .woocommerce-MyAccount-content > h2 {
	display: none
}



/* Addresses */


body.woocommerce-edit-address .woocommerce-Addresses .woocommerce-Address h2 {
    font-size: 26px;
	margin-bottom: 20px;
}


body.woocommerce-edit-address .woocommerce-MyAccount-content > form {
    background: var(--background-top);
    border-radius: var(--border-radius-primary);
    padding: var(--gap-primary);
}

body.woocommerce-edit-address .woocommerce-MyAccount-content > form h2 {
	font-size: 30px;
	margin-bottom: 20px;
}



/* Account Details */

body.woocommerce-edit-account .woocommerce-MyAccount-content > form .form-row-wide:nth-of-type(3) {
	display: none;
}

body.woocommerce-edit-account .woocommerce-MyAccount-content > form fieldset legend {
	font-size: 25px;
}