:root {
	--brand-strong-bg-color: #D4DDDE;
	--brand-price-text-color: #FFA43E;

	--f7-card-expandable-tablet-width: 85dvw;
	--f7-card-expandable-tablet-height: 100dvh;
}

.navbar-bg-main {
	background-color: rgba(44, 56, 138, .8);
	backdrop-filter: blur(1.75em);
}

.force-bg-primary {
	background-color: #2C388A !important;
}

.width-50 {
	width: 50%;
}

.margin-auto {
	margin: auto;
}

.f7-icons.icon-small {
	font-size: 22px;
}

.display-flex-column {
	flex-direction: column;
}

.text-break {
	white-space: break-spaces;
}

.display-flex-gap {
	gap: 2rem;
}

.display-flex-gap-half {
	gap: 1rem;
}

.block-filter {
	--f7-button-bg-color: rgba(var(--f7-theme-color-rgb), .05);
	display: flex;
	overflow: auto;
	scrollbar-width: none;
}

.block-filter .button {
	margin-right: .5rem;
	flex-shrink: 0;
}

.page-subtitle {
	font-size: 16px;
	letter-spacing: 0;
	opacity: .55;
}

.item-cards {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 8px;
	gap: 8px;
}

@media (min-width: 480px) {
	.item-cards {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media (min-width: 768px) {
	.item-cards {
		grid-template-columns: repeat(4, 1fr);
	}
}

.item-card {
	/*background: var(--brand-strong-bg-color);*/
	padding: 18px;
	color: inherit;
	border-radius: 24px;
	/*border: 1px solid #eee;*/
	/*background-color: #f5fafc;*/

	display: block;
	overflow: hidden;
	transition-property: transform;
}

.item-card .item-card-image {
	transition: transform 0.3s ease-in-out;
}

.item-card:hover .item-card-image {
	transform: scale(1.12);
}

.item-card-image {
	width: 141px;
	height: 251px;
	margin: auto;

	border-radius: 10px;
}

.item-card img {
	z-index: 2;
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	position: relative;

	border-radius: 16px;

	object-fit: cover;
	object-position: center center;

	transition: transform 300ms ease-in-out;
}

.item-card-title {
	color: var(--f7-dialog-text-color);
	font-size: 3.05vh;
	font-weight: bolder;
	letter-spacing: .0266666667vw;

	padding-right: 12.5%;
	padding-left: 12.5%;

	text-align: center;
}

.item-card-price {
	color: var(--brand-price-text-color);
	font-size: 3.65vh;
	font-weight: bolder;
	letter-spacing: .0266666667vw;

	padding-top: 1.5vh;
	padding-bottom: 1.5vh;
	text-align: center;
}

.swiper-banners {
	height: 80dvh;
	padding-bottom: 20dvh;
}


/*########################################################################*/
.scroll-block {
	overflow: auto;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
	scroll-padding-left: calc(var(--f7-block-padding-horizontal) + var(--f7-safe-area-left));
}

.fresh-recipes {
	display: flex;
	padding-top: 16px;
	padding-bottom: 16px
}

.fresh-recipes-item {
	width: 192px;
	flex-shrink: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	cursor: pointer;
	transform-style: preserve-3d;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none
}

.fresh-recipes-item:not(:last-child) {
	margin-right: 16px
}

.fresh-recipes-item img {
	width: 152px;
	height: 152px;
	object-fit: cover;
	object-position: center;
	border-radius: 16px;
	margin-bottom: -64px;
	position: relative;
	z-index: 10;
	box-shadow: 0 8px 16px #00000080;
	background: #ddd;
	transition-duration: .15s;
	transition-property: transform, box-shadow;
}

.dark .fresh-recipes-item img {
	background: #333
}

.fresh-recipes-item.active-state img {
	box-shadow: 0 0 #0000;
	transform: translateY(4px) scale(.975)
}

.fresh-recipes-item-content {
	border-radius: 16px;
	padding: 80px 16px 16px;
	width: 100%;
	box-sizing: border-box
}

.ios .fresh-recipes-item-content {
	color: #fff;
	background-image: linear-gradient(to right, var(--f7-theme-color), var(--f7-theme-color-tint))
}

.md .fresh-recipes-item-content {
	color: var(--f7-md-on-primary-container);
	background-color: var(--f7-md-primary-container)
}

.fresh-recipes-item-title {
	font-size: 1.35rem;
	font-weight: 600;
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 20px;
	padding-bottom: 8px;
}

.fresh-recipes-item-text {
	height: 72px;
	overflow: hidden;
	white-space: break-spaces;
	text-overflow: ellipsis;
}

.fresh-recipes-item-badges {
	display: flex;
	font-size: 12px;
	font-weight: 500;
	/*margin-bottom:8px*/
}

.fresh-recipes-item-badges>div {
	margin-right: 4px;
	background: rgba(0, 0, 0, .15);
	padding: 2px 6px;
	border-radius: 16px;
	display: flex;
	align-items: center
}

.fresh-recipes-item-badges i,
.fresh-recipes-item-badges span {
	opacity: .75
}

.fresh-recipes-item-badges i {
	font-size: 16px;
	margin-right: 2px
}

.recent-recipes {
	padding-top: 16px;
	padding-bottom: 16px;
}

.recent-recipes-item img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: .5;
}

.recent-recipes-item-title {
	font-weight: 600;
	font-size: 22px;
	padding: 16px;
	position: relative;
	z-index: 10;
	border-radius: 0 0 16px 16px;
}

.recent-recipes-item {
	height: 131px;

	background-color: #333;
	border-radius: 16px;
	width: 100%;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	cursor: pointer;
	transform-style: preserve-3d;
	transition-duration: .15s;
	transition-property: opacity;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;

	box-shadow: 0 4px 8px #00000059;
	transition: box-shadow 100ms ease-in-out;
}

.recent-recipes-item:not(:first-child) {
	margin-top: 24px;
}

.recent-recipes-item.active-state {
	box-shadow: 0 1px 1px #00000059;
}

.navbar-blur {
	opacity: .89;
}

.font-bold {
	font-weight: bold !important;
}

.font-bolder {
	font-weight: bolder !important;
}

.slide-in {
	opacity: 0;
	transition: opacity 0.5s ease-out;
}

.slide-in.active {
	animation: fadeInStyled .6s ease-out forwards;
}

@keyframes slideOut {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.slide-in2 {
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.5s ease-out, opacity 0.5s ease-out
}

.slide-in2.active {
	transform: translateY(0);
	opacity: 1;
}


.height-100 {
	height: 100%;
}

.item-page-center-content-half {
	max-width: 480px;
	margin: 0 auto;
}

.item-page-center-content {
	max-width: 640px;
	margin: 0 auto;
}

.border-radius-8 {
	border-radius: 8px;
}

.border-radius-16 {
	border-radius: 16px;
}

.display-small-only {
	display: block;
}

@media (min-width: 480px) {
	.display-small-only {
		display: none;
	}
}


.bgColor-alt {
	background-color: var(--f7-md-primary-shade);
}

@keyframes fadeInStyled {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.95);
		filter: blur(5px);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
}

.height-auto {
	height: auto;
}

.link-welcome {
	font-weight: 600;
	/*font-size: 1.12rem !important;*/
}

.main-logo {
	opacity: .6;
	border-radius: 16px;
}

.fade-background {
	background: linear-gradient(90deg, #d2dafe, #f9a8d4);
}

.welcome-top {
	display: block;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.main-logo-cont {
	text-align: center;
}

.main-title {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

.menu-top {
	gap: 2rem;
	flex-direction: row;
	justify-content: center;
	text-align: center;

	display: none;
}

.menu-top-mobile {
	display: flex;
	justify-content: right;
}

.sheet-modal-info {
	height: calc(100% - 32px);
}

@media (min-width: 768px) {
	.welcome-top {
		display: flex;
		align-items: center;
	}

	.main-title {
		padding-left: 1rem;
	}

	.menu-top {
		display: flex;
	}

	.menu-top-mobile {
		display: none;
	}

	.sheet-modal-info {
		height: auto;
	}
}

/*----------------------------------------------------------------------------------------*/
.category-item {
	margin: 42px auto;
	border-radius: 8px;
	background-color: white;
	padding: var(--f7-typography-padding);

	overflow: hidden;
	border-radius: 10px;
	background-color: white;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-title {
	margin-top: 0;
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: .75rem;
	/*padding-bottom: var(--f7-typography-padding);*/
}

.buttons-swipers {
	display: flex;
	justify-content: center;
	margin-top: 16px;
}

@media (min-width: 768px) {
	.category-item {
		width: 1180px;
	}
}

.custom-popup {
	background-color: rgba(0, 0, 0, .4);
}

.custom-popup-inner {
	width: 100%;
	height: 100%;

	display: flex;
	justify-content: center;
	align-items: center;
}

.custom-popup-content {
	width: 100%;
	height: 100%;
	padding: 8px;

	overflow: auto;
	border-radius: 16px;
	background-color: #fff;
}


@media (min-width: 768px) {
	.custom-popup-content {
		width: 75%;
		height: 75%;
	}
}

.product-section {
	display: block;
	overflow: hidden;
	max-width: 1200px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

	overflow: auto;
	text-align: center;

	align-items: center;
}

@media (min-width: 768px) {
	.product-section {
		display: flex;
		text-align: inherit;
	}
}

/* Product Image Section */
.product-image img {
	width: 100%;
	height: auto;
	max-width: 600px;
	display: block;
	margin-top: 16px;
	border-radius: 8px;
}

/* Product Details Section */
.product-details {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-details h1 {
	font-size: 1.5em;
	margin-bottom: 10px;
}

.tagline {
	font-size: 1rem;
	color: #777;
	margin-bottom: 20px;
}

.features {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
}

.features li {
	font-size: 1rem;
	color: #555;
	margin-bottom: 10px;
}

.price {
	margin-bottom: 20px;
}

.current-price {
	font-size: 5dvh;
	font-weight: bold;
	color: var(--brand-price-text-color);
}

.header-img-producto {
	/*width: 100%;*/
	width: 73%;
	height: 50%;
}

.item-page-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: var(--f7-page-navbar-offset);
	margin-top: calc(-1 * var(--f7-page-navbar-offset));

	width: 100%;
	height: 100%;

	max-height: 310px;

	/*	background-color: #000000;*/
	border-radius: 16px;
}

.item-page-header-back-image {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center center;

	opacity: .55;
}

.item-page-header-front-image-container {
	width: 100%;
	height: 90%;
	margin-top: 0%;
}

.item-page-header-front-image {
	width: 100%;
	height: 100%;

	margin: auto;
	position: relative;

	border-radius: 16px;
	object-fit: contain;
	object-position: center;

	z-index: 10;
	/*	box-shadow:0 0 30px #00000080;*/
	background-color: white;
}

@media (min-width: 768px) {
	.item-page-header-front-image-container {
		width: 100%;
		height: 90%;
		margin-top: 0%;
	}

	.header-img-producto {
		height: 100%;
	}
}

.item-page-header-title {
	font-weight: bold;
	margin-top: 32px;
	font-size: var(--f7-block-title-large-font-size);
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 0 16px;
	line-height: 1.2;
	color: var(--f7-block-title-text-color)
}

.item-page-header-category {
	text-align: center;
	text-transform: capitalize;
	position: relative;
	z-index: 10;
	font-size: 16px;
	margin-top: 16px;
	padding: 0 16px;
	opacity: .75
}

.swiper-generic .swiper-slide {
	height: auto;
}

.swiper-generic .item-card {
	height: calc(100% - 3rem);
}


.navbar-custom {
	opacity: .8;
	background-color: #924274;

	background-color: #924274;

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.popup-inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.popup-inner .popup-content {
	flex-grow: 1;
}

.box-shadow {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
}

h1 {
	font-size: 2.75em;
}

h1>.f7-icons {
	font-size: 1em !important;
}

.bg-productos {
	border-radius: 0 0 16px;
	background-color: #FCFCFC;

	padding-top: 32px;
	padding-bottom: 32px;
}

.categorias-container {
	padding: 0 .5rem;
	background-color: white;
}

.appstore-card {
	width: 100%;
	height: 416px;
	--f7-card-content-padding-horizontal: 20px;
	--f7-card-content-padding-vertical: 30px;
	--f7-card-expandable-font-size: 20px;
	--f7-card-expandable-font-weight: 500;
	--f7-card-expandable-max-width: none;
	--f7-card-expandable-tablet-height: 92vh;
	--f7-card-expandable-tablet-border-radius: 13px;
	--card-offset: calc(40px + var(--f7-safe-area-left) + var(--f7-safe-area-right));
	--card-width: calc(100% - var(--f7-safe-area-left) - var(--f7-safe-area-right) - 40px);

	border-radius: 16px;
	background-color: black;

	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);

	cursor: pointer;
	margin: 0;
}

.appstore-card.card-opened {
	cursor: unset;
}

:is(.appstore-card.card-opened, .appstore-card.card-opening) .card-content {
	background-color: rgba(0, 0, 0, 0.45);
	padding: 8px 2dvw 16px 2dvw;
}

@media (min-width: 720px) {
	.categorias-container {
		padding: 0 12.68rem;
		margin: 64px 0 16px;
	}

	.appstore-card {
		height: 240px;
	}

	:is(.appstore-card.card-opened, .appstore-card.card-opening) .card-content {
		background-color: rgba(0, 0, 0, 0.54);
		padding: 8px 4dvw 16px 4dvw;
	}
}

:is(.appstore-card.card-opened, .appstore-card.card-opening) .appstore-card-title {
	margin-top: 10%;
	margin-left: 1.5rem;
	font-size: 43pt;
}

.appstore-card .appstore-card-background {
	width: 0;
	height: 0;

	object-fit: cover;
	object-position: center center;
	background-color: transparent;
}

.appstore-card.card-opened .appstore-card-background {
	width: 100%;
	height: 100%;

	filter: blur(4px);
	opacity: 0.42;
}

.appstore-card-title {
	line-height: 1.1;
	font-size: 29pt;
	font-weight: bolder;
	font-family: sans-serif;
	color: rgb(249, 249, 249);

	text-shadow: 0 4px 8px #00000059;
}

.appstore-card-header-text {
	padding: 16px var(--f7-card-content-padding-horizontal);
	width: 100%;
	box-sizing: border-box;
	transform: translate3d(0, 0, 0);
	margin-bottom: auto;

	/*	padding: 10px;*/
	background-color: rgba(0, 0, 0, 0.3);
	white-space: break-spaces;
}

.appstore-card-close-button {
	position: absolute;
	top: calc(16px + var(--f7-safe-area-top));
	right: calc(var(--f7-card-content-padding-horizontal) + var(--f7-safe-area-right));

	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.90);
}

.appstore-card-header {
	height: 410px;
	max-height: 100vh;
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
}

:is(.appstore-card.card-opening, .appstore-card.card-opened) .appstore-card-header {
	height: 192px;
}

.appstore-card-header>img {
	position: absolute;
	top: 0;
	left: 0;

	z-index: -1;
	object-fit: cover;
	object-position: center;
	border-radius: 16px;

	width: 100%;
	height: 100%;

	filter: contrast(-100%);
	background-color: white;
}

@media (min-width: 720px) {
	.appstore-card-header>img {
		width: 50%;
	}
}

:is(.card-opened, .card-opening) .appstore-card-header>img {
	width: 100%;
	height: 100%;
}

.category-card {
	width: 100%;
	height: 410px;
	cursor: pointer;
	background-color: white;
	background-size: cover;

	margin: 0 !important;
}

/*@media (min-width: 480px) {
	.category-card{
		background-size: contain;
	}	
}*/

.category-card.card-opened,
.category-card.card-opening {
	background-image: none !important;
}

.card-expandable .hide-on-closed,
.card-expandable.closing .hide-on-closed {
	opacity: 0;

	width: 0;
	height: 0;
	overflow: hidden;
}

:is(.card-expandable.card-opening, .card-expandable.card-opened) .hide-on-closed {
	opacity: 1;
	width: unset;
	height: unset;
	transition: opacity .6s ease-in;
}

.category-card .hide-on-opened,
.category-card.closing .hide-on-opened {
	display: block;
}

.category-card.card-opened .hide-on-opened,
.category-card.card-opening .hide-on-opened {
	display: none;
}


.category-card .container {
	background-color: #f3e7f0;

	padding: 5.0666666667vw 3.7333333333vw;
}

.category-card .container .container-width {
	border-radius: 16px;
	background-color: white;
	padding-top: 16px;
}

.swiper-pagination-bullet-active {
	background-color: var(--f7-theme-color) !important;
}

.container-width {
	width: 100%;
	margin: auto;
}

@media (min-width: 480px) {
	.container-width {
		width: 82%;
	}
}

.card-top {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.card-top .fondo-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	object-fit: cover;
}

.card-top .my-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.card-top .title {
	z-index: 3;
	color: white;
	position: relative;

	padding: 4vw;
	font-size: 9vh;
	font-weight: bold;
}

@media (min-width: 480px) {
	.card-top .title {
		padding: 2vw;
		font-size: 3.9dvw;
	}
}


/*.category-card.card-opening .card-top,
.category-card.card-opened .card-top {
	height: 45vh;
	background-color: black;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}*/

@media (min-width: 480px) {
	.popup-carrito .total {
		font-size: 1.6vw;
	}
}

/*.category-card .title{
	width: 100%;
	height: 100%;

	font-size: 9.6vh;

	font-weight: bolder;
	padding-top: 32px;
	padding-left: 16px;

	color: white;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
	transition: all .3s ease;
}
:is(.category-card.card-opening, .category-card.card-opened) .title{
	font-size: 10.4vh;
	padding: 2.8vw 3.9333333334vw;
}*/

@media (min-width: 480px) {
	:is(.category-card.card-opening, .category-card.card-opened) .title {
		font-size: 4.4vw;
		padding: 2.4vw 3.4666666667vw;
		color: blue;
	}
}

.only-medium {
	display: none;
}

.only-small {
	display: block;
}

@media (min-width: 480px) {
	.only-small {
		display: none !important;
	}

	.only-medium {
		display: block;
	}
}

.card-backdrop {
	background-color: rgba(0, 0, 0, 0.08);
}

/*.page-with-card-opened .fab{
	visibility: hidden;
}*/
.page-with-card-opened .main-navbar {
	display: none;
}


.text-muted {
	opacity: 0.7;
}

.my-title {
	font-size: 3.2vw;
	font-weight: 700;
	letter-spacing: .0266666667vw;
	line-height: 8vw;
	color: #1f1b1e;
}

.popup-carrito .total {
	font-size: 6.1vw;
	margin: 0.8vw 0;
	color: #888;
	font-weight: bold;
}

@media (min-width: 480px) {
	.popup-carrito .total {
		font-size: 1.6vw;
	}
}

.margin-auto {
	margin: auto;
}

.align-items-center {
	align-items: center;
}

.flex-gap {
	gap: 15px;
}

.popup-custom {
	--f7-popup-border-radius: 0px;
	--f7-popup-tablet-width: 630px;
	--f7-popup-tablet-height: 98dvh;
	--f7-popup-push-offset: var(--f7-safe-area-top);
	--f7-safe-area-top: 0px;
	--f7-safe-area-bottom: 0px;


	width: var(--f7-popup-tablet-width);
	height: 100dvh;
	max-width: 100dvw;
}

@media (min-width: 480px) {
	.popup-custom {
		left: 50%;
		top: 50%;
		margin-left: calc(-1 * var(--f7-popup-tablet-width)/ 2);
		margin-top: calc(-1 * var(--f7-popup-tablet-height)/ 2);
		transform: translate3d(0, 100vh, 0);
		border-radius: var(--f7-popup-tablet-border-radius, var(--f7-popup-border-radius));

		height: var(--f7-popup-tablet-height);
	}
}

.bg-color-transparent {
	background-color: transparent !important;
}

.custom-popup>div {
	max-height: 100dvh;
	overflow: auto;
}

.main-icon {
	font-size: 13dvh !important;
	line-height: 8vw;
	font-weight: 900;
	letter-spacing: .0266666667vw;
	color: #111111;
}

.popup-title {
	font-size: 6.4dvh;
	font-weight: 700;
	letter-spacing: .0266666667vw;
	line-height: 8vw;
	color: #111111;
}

.custom-close-btn {
	top: 1rem;
	right: 0.25rem;
	position: absolute;
}

.my-group-title {
	justify-content: center;
	font-weight: bold !important;
	background-color: #F5F5F5 !important;
}

.brand-item {
	width: 100%;
	height: 98px;
	border: 1px solid #cdcdcd;

	display: flex;
	align-items: center;
	border-radius: 8px;
	background-color: white;
}

.brand-aside {
	flex-grow: 2;
	height: 100%;

	display: flex;
	align-items: center;
	justify-content: center;

	background-color: #ffffff;

	max-width: 150px;
	padding: 0 8px;
	border-radius: 16px;
}

.brand-item img {
	width: 100%;
	height: 100%;

	background-color: #ffffff;
	object-fit: contain;
	object-position: center center;
	border-color: 1px solid gray;
}

.brand-name {
	flex-grow: 4;

	color: #000;
	font-size: 19px;
	font-weight: 600;

	hyphens: auto;
	line-height: 22px;
	padding-left: 16px;
}

.button-circle {
	padding: 32px 26px;
	border-radius: 50%;
}

.align-items-center {
	align-items: center;
}

.swiper-container {
	display: grid;
	padding-bottom: 12dvh;
	gap: 16px;
	margin: 0 2.5%;
	padding-top: 12dvh;
	grid-template-columns: 6% 88% 6%;
}

@media (max-width: 480px) {
	.swiper-container {
		grid-template-columns: 100%;
	}
}

.banner-container {
	position: relative;
	width: 100%;
	height: 600px;
}

.banner-item {
	width: 100%;
	height: 100%;

	object-fit: contain;
	object-position: top center;
}

.preferidos-section {
	position: absolute;
	top: 75%;
	left: 0;
	width: 100%;
	height: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	font-weight: bold;
}

.preferidos-section .preferidos-grid {
	width: 90%;
	gap: 32px;
}


.preferidos-section .preferidos-item {
	color: #000;
	background-color: #FCFDFE;
	min-height: 28dvh;

	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(16, 16, 16, 0.30);
}

.preferidos-item .image {
	width: 100%;
	height: 100px;

	object-fit: contain;
	border-radius: 16px;
	object-position: center center;
	cursor: pointer;
}

.preferidos-item .preferidos-title {
	color: #000;
	font-weight: bold;
	padding: 8px;

	font-size: 15px;

	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;

	text-overflow: ellipsis;
}

.preferidos-item .preferidos-sub-title {
	color: var(--brand-price-text-color);
	padding: 8px 8px 16px;

	font-size: 14px;

	max-width: 100%;
	overflow: hidden;
	text-align: center;
}

.custom-title {
	color: #000;
	opacity: 0.7;
	font-weight: bolder !important;
}

.splash-screen {
	width: 100%;
	height: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
}

ul.list-carrito img {
	object-fit: contain;
	object-position: center center;
	background-color: white;
}

.brand-image {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

my-brand-section .page-title,
my-brand-section .navbar-bg {
	background-color: rgba(0, 0, 0, .45);
}

.popup-gracias {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}

.popup-gracias .container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup-gracias .container .inner {
	overflow: auto;
	padding: 10dvh 5dvw;
	max-height: 70dvh;
	border-radius: 16px;
	background-color: #FFFFFFF4;
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.popup-gracias .title {
	color: #4C4C4D;
	font-size: 38pt;
	font-weight: 600;
	text-align: center;
}

.popup-gracias .sub-title {
	color: #8C8C8D;
	font-size: 19pt;
	text-align: center;
}

.popup-gracias .main-cart-icon {
	text-align: center;
}

.popup-gracias .main-cart-icon .icon {
	color: #0C0C0D;
	font-size: 68pt !important;
}

.bg-notif {
	background-color: #F0DFF2F8;
}

.blur-background {
	background-color: rgba(255, 255, 255, .17);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.blur-background-dark {
	background-color: rgba(0, 0, 0, .17);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.force-white-bg .item-card {
	background-color: #ffffff;
}

.force-white-bg .item-card .item-card-image {
	width: 71px;
	height: 126px;
}

.force-white-bg .item-card .item-card-title {
	font-size: 2vh;
}

.searchbar-container {
	width: 35dvw;
	margin: auto;
	padding-bottom: 37.5pt;
}

.popup-delivery {
	background-color: #FAFAFA;
	--f7-dialog-width: 560px;
}

.popup-delivery .delivery-option-item {
	cursor: pointer;
}

.delivery-option-item {
	transition: transform 200ms ease-in-out;
}

.delivery-option-item:hover {
	color: var(--f7-theme-color) !important;
	transform: translateY(-6%);
}

.popup-delivery .title {
	text-align: center;
	font-weight: bold;
	margin-bottom: 1.25rem;
	font-size: 16pt;
}

.popup-delivery .service-name {
	text-align: center;
	font-weight: bold;
}

.popup-delivery .price {
	text-align: center;
	margin-bottom: .5rem;
	/*color: var(--brand-price-text-color);*/
}

.popup-delivery .stimated-time {
	text-align: center;
	opacity: 0.8;
}

.popup-delivery .image-container {
	padding: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.popup-delivery .image-container .icon {
	font-size: 32pt;
}

.comments-container {
	min-height: 14rem;
	border-radius: 16px;
	/* background-color: #fff; */
	padding: 3rem 3rem;
	display: flex;
	gap: 1.5rem;
	white-space: nowrap;
	overflow: auto;
}

.comments-container .comment-item {
	display: inline-block;
	position: relative;
	width: 57%;
	min-width: 457px;
	/* height: 16.5rem; */
	/* max-height: 45dvh; */
	border-radius: 16px;
	margin-right: 1.5rem;
}


.quote-section {
	background-color: #ffffff;
	padding: 60px 40px;
	max-width: 800px;
	text-align: center;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	position: relative;
}

.quote-section::before {
	content: "";
	width: 60px;
	height: 3px;
	background-color: #555;
	display: block;
	margin: 0 auto 30px auto;
}

.quote {
	font-size: 17pt;
	font-style: italic;
	color: #111;
	line-height: 1.4;
	margin-bottom: 0px;
	opacity: 0.7;
	white-space: break-spaces;
}

.author {
	font-size: 1.1em;
	color: #888;
	letter-spacing: 0.5px;
}

.dialog-comentarios {
	--f7-dialog-width: 460px;
	background-color: white;
}

.preferidos-section {
	top: 63%;
	z-index: 2;
}