/*
Theme Name:		Cerro Castillo
Description:	Cerro Castillo Theme
Theme URI:		https://cerrocastillo.com.ar
Theme Author:	Cerro Castillo
Author URI:		https://cerrocastillo.com.ar
Template:		bricks
Version:		1.0.0
Text Domain:	bricks
*/







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


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


/* Preloader */

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


/* Scrollbar */

::-webkit-scrollbar {
    width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-dark-default);
    border-radius: 100px;
}
::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 100px;
}


/* h4 for plain posts */

.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;
}


/* Buttons hover */

button[type="button"],
button[type="submit"] {
	transition: .2s;
}

.brxe-button:hover,
button[type="button"]:hover,
button[type="submit"]:hover {
    filter: brightness(1.15) saturate(.85);
}

.brxe-button.bricks-background-light:hover {
	opacity: .94;
}
.brxe-button.bricks-background-dark:hover {
	opacity: .85;
}


/* Google translate */

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

.gtranslate_wrapper .gt_float_switcher {
	display: block;
	border-radius: 10px;
	box-shadow: 0 0 20px #00000015 !important;
	background: rgba(255, 255, 255, 1) !important;
	padding: 5px 5px;
	transition: none !important;
}

.gtranslate_wrapper .gt_options a,
.gtranslate_wrapper .gt-selected div {
	font-size: 13px;
	font-weight: bold;
	font-family: "Domaine Sans Text";
	transition: .2s !important;
	color: #000000dd !important;
	padding: 5px 5px 5px 5px !important;
	display: flex !important;
	gap: 5px;
	align-items: center;
}
.gtranslate_wrapper .gt_options a.gt-current {
	display: none !important;
}

.gtranslate_wrapper .gt_options a {
	border-radius: 6px;
}
.gtranslate_wrapper .gt_options a:hover {
	background: #f5f5f5 !important;
}

.gtranslate_wrapper .gt-selected div span {
	top: 0 !important;
}

.gtranslate_wrapper img {
	width: 28px !important;
}


/* Yith currency */

.yith-wcmcs-shortcode {
    margin: 0 !important;
}

.yith-wcmcs-shortcode .blockUI.blockOverlay {
	display: none !important;
}

.yith-wcmcs-shortcode .yith-wcmcs-currency-list {
    padding: 0;
    border-radius: 10px;
    font-size: 13px;
    font-family: 'Domaine sans text';
    font-weight: bold;
}

.yith-wcmcs-shortcode .yith-wcmcs-currency-list .yith-wcmcs-selected-currency {
    padding: 6px 31px 6px 9px;
    border: none;
    box-shadow: none;
    border-radius: 10px;
    box-shadow: 0 0 20px #00000015 !important;
	transition: .2s;
}
.yith-wcmcs-shortcode .yith-wcmcs-currency-list .yith-wcmcs-selected-currency.yith-wcmcs-shortcode-style--active {
	box-shadow: none !important;
	transition: 1s;
}

.yith-wcmcs-shortcode .yith-wcmcs-currency-list .yith-wcmcs-selected-currency:before {
    transform: translateY(-55%) rotate(180deg);
}

.yith-wcmcs-shortcode .yith-wcmcs-currency-list .yith-wcmcs-selected-currency.yith-wcmcs-shortcode-style--active:before {
    transform: translateY(-45%);
}

.yith-wcmcs-shortcode .yith-wcmcs-currency-list .yith-wcmcs-currencies-dropdown {
    bottom: 20px !important;
	top: auto !important;
    margin: 0;
    min-width: 20px;
    border-radius: 10px;
    box-shadow: none !important;
	z-index: -1;
	border: none !important;
	transition: box-shadow .5s, bottom .3s;
}
.yith-wcmcs-shortcode .yith-wcmcs-currency-list .yith-wcmcs-selected-currency.yith-wcmcs-shortcode-style--active + .yith-wcmcs-currencies-dropdown {
	box-shadow: 0 0 20px #00000015 !important;
	bottom: 0 !important;
}

.yith-wcmcs-shortcode .yith-wcmcs-currency-list .yith-wcmcs-currencies-dropdown .yith-wcmcs-currencies {
    margin: 6px 0 38px 0;
}

.yith-wcmcs-shortcode .yith-wcmcs-currency-list .yith-wcmcs-currencies-dropdown .yith-wcmcs-currencies .yith-wcmcs-currency {
    padding: 1px 10px;
    margin: 0;
}

.yith-wcmcs-shortcode .yith-wcmcs-currency-list .yith-wcmcs-currencies-dropdown .yith-wcmcs-currencies .yith-wcmcs-currency.yith-wcmcs-currency--selected {
    display: none;
}

.yith-wcmcs-shortcode .yith-wcmcs-currency-list .yith-wcmcs-currency-flag img {
	width: 28px;
	height: 21px;
	border-radius: 3px;
}







/* -------------------------- */
/* ------- 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; }
}








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


/* General */

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

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

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

body:not([data-builder-window="iframe"]) .brcs-multistepform .yith-wcbk-add-to-cart-button {
	display: none !important;
}







/* -------------------------------*/
/* ------- Booking Form ------- */
/* -------------------------------*/


/* General */

.yith-wcbk-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.yith-wcbk-booking-form input,
.yith-wcbk-booking-form textarea,
.yith-wcbk-booking-form .yith-wcbk-form-section-persons,
.yith-wcbk-booking-form .yith-wcbk-form-section-service {
    background: var(--background-bottom) !important;
    border-radius: var(--border-radius-secondary) !important;
	border: none !important;
}

.yith-wcbk-booking-form .yith-wcbk-form-section-persons,
.yith-wcbk-booking-form .yith-wcbk-form-section-service {
	padding: 8px 12px !important;
	display: grid !important;
	align-items: center;
	grid-template-columns: 1fr auto;
}

.yith-wcbk-booking-form .yith-wcbk-form-section-service .yith-wcbk-booking-service__pricing,
.yith-wcbk-booking-form .yith-wcbk-form-section-service .yith-wcbk-booking-service__description {
	margin: -10px 0 0 0 !important;
	opacity: .7;
}

.yith-wcbk-booking-form .yith-wcbk-form-section-persons label {
	margin: 0 !important;
	color: inherit;
	font-weight: 400 !important;
}


.yith-wcbk-booking-form .yith-wcbk-form-section-dates label,
.yith-wcbk-booking-form .yith-wcbk-form-section-duration {
	display: none !important;
}


/* Quantity selectors */

.yith-wcbk-booking-form .qty-enhanced {
	display: flex;
	justify-content: center;
	align-items: center;
	grid-row: 1;
	grid-column: 2;
}
.yith-wcbk-booking-form .yith-wcbk-form-section-service .yith-wcbk-booking-service__pricing + .qty-enhanced,
.yith-wcbk-booking-form .yith-wcbk-form-section-service .yith-wcbk-booking-service__description + .qty-enhanced {
	grid-row: 1 / span 2;
}
.yith-wcbk-booking-form .yith-wcbk-form-section-service .yith-wcbk-booking-service__pricing + .yith-wcbk-booking-service__description + .qty-enhanced {
	grid-row: 1 / span 3;
}

.yith-wcbk-booking-form .qty-enhanced input[type="number"] {
    //background: #00000011 !important;
	max-width: 42px !important;
	padding: 8px 12px !important;
	text-align: center !important;
	-moz-appearance: textfield;
	min-height: 0 !important;
}
.yith-wcbk-booking-form .qty-enhanced input[type="number"]::-webkit-inner-spin-button,
.yith-wcbk-booking-form .qty-enhanced input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.yith-wcbk-booking-form .qty-enhanced .qty-minus,
.yith-wcbk-booking-form .qty-enhanced .qty-plus {
	width: 30px;
	height: 30px;
	font-size: 23px;
	font-weight: 700;
    background: var(--background-default) !important;
    background: var(--color-primary) !important;
	border-radius: 100px;
	cursor: pointer;
	text-align: center;
	color: white
}


/* DatePicker */

.yith-wcbk-booking-form .yith-wcbk-date-picker .ui-widget.ui-widget-content {
    width: 100% !important;
    box-shadow: none !important;
    background: var(--background-bottom);
    border-radius: var(--border-radius-secondary);
}

.yith-wcbk-booking-form .yith-wcbk-date-picker .ui-widget.ui-widget-content .ui-datepicker-header {
    background: var(--background-default);
    border-radius: var(--border-radius-secondary);
    margin-bottom: 12px;
}

.yith-wcbk-booking-form .yith-wcbk-date-picker .ui-widget.ui-widget-content > table {
    margin-bottom: 5px;
}

.yith-wcbk-booking-form .yith-wcbk-date-picker .ui-widget.ui-widget-content > table td {
    background: var(--background-bottom);
	cursor: pointer;
}

.yith-wcbk-booking-form .yith-wcbk-date-picker .ui-widget.ui-widget-content > table td a {
    border-radius: var(--border-radius-secondary);
    margin: 0 5px;
}


/* Totals */

.yith-wcbk-booking-form .yith-wcbk-form-section-totals,
.yith-wcbk-booking-form .yith-wcbk-booking-form-message {
    background: var(--background-top) !important;
    border-radius: var(--border-radius-secondary) !important;
	box-shadow: 0 0 10px #00000005;
	border: none !important;
	padding: 6px 10px !important;
}

.yith-wcbk-booking-form .yith-wcbk-form-section-totals .yith-wcbk-booking-form-totals__list {
    margin: 0;
}

.yith-wcbk-booking-form .yith-wcbk-form-section-totals .yith-wcbk-booking-form-totals__list > div:not(:last-child) {
    display: none !important;
}


.yith-wcbk-booking-form .yith-wcbk-booking-form-message * {
	font-size: 15px !important;
}

.yith-wcbk-booking-form .yith-wcbk-booking-form-message .yith-wcbk-bookable.not-bookable {
	text-align: center;
	margin: 10px 0;
}
.yith-wcbk-booking-form .yith-wcbk-booking-form-message .yith-wcbk-bookable.not-bookable .non-available-reasons {
	display: none !important;
}


.yith-wcbk-booking-form + .yith-wcbk-add-to-cart-button {
	width: 100%;
}


















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



/* Inputs */


body input:not(.qty),
body textarea,
body .select2-container--default .select2-selection--single {
    background: var(--background-bottom);
	border-radius: var(--border-radius-secondary);
    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(187deg) saturate(0.3) brightness(1.4);
}

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

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

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 {
	color: #0202024f !important;
}

.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 CART ------- */
/* ------------------------ */



/* General */


.blockUI.blockOverlay {
    backdrop-filter: blur(3px) !important;
    opacity: 1 !important;
    background: #FFFFFF14 !important;
	z-index: 1 !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 strong,
.woocommerce-checkout #shipping_country_field strong {
    background: #671d1d0f;
    line-height: 40px;
    display: block;
    padding: 0 12px;
    font-weight: inherit;
}


.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;
}


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


.woocommerce-checkout .woocommerce-additional-fields h3 {
	font-size: 1.55rem;
	padding-bottom: 20px;
}


/* Your order */


body.woocommerce-checkout .woocommerce-checkout-review-order-table,
body.woocommerce-checkout .woocommerce-checkout-payment {
    border: none !important;
    display: flex;
	flex-direction: column;
}


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;
}


/* Payment methods */


body.woocommerce-checkout .woocommerce-checkout-review-order h4 {
    font-size: 1.3rem !important;
    padding-top: 20px;
    padding-bottom: 15px;
}

body.woocommerce-checkout .woocommerce-checkout-review-order li.wc_payment_method {
	background: var(--background-bottom);
	border-radius: var(--border-radius-secondary);
    display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 10px;
}

body.woocommerce-checkout .woocommerce-checkout-review-order li.wc_payment_method label {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	min-height: 50px !important;
	font-size: .92rem;
}

body.woocommerce-checkout .woocommerce-checkout-review-order li.wc_payment_method label img {
	max-width: 100px !important;
	width: auto !important;
	height: auto !important;
	margin: 0;
}

body.woocommerce-checkout .woocommerce-checkout-review-order li.wc_payment_method > div {
	display: none !important;
}


body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    padding: 0 10px;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper label input {
    margin-right: 6px;
}







/* ---------------------------------------------- */
/* ------- 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 .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;
}
