/**
 * GW Blueprint - Main Stylesheet
 * 
 * This file contains base styles and utilities for the theme
 */

/* CSS Variables for easy customization */
/* Reset and Base Styles */
* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	line-height: 1.6;
}

body {
	margin: 0;
	padding: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	line-height: 1.2;
}

p:last-child,
ul:last-child,
ol:last-child {
	margin-bottom: 0;
}

ul:empty,
ol:empty,
li:empty,
p:empty {
	display: none;
}

img {
	max-width: 100%;
	border: none;
	outline: none;
}

input,
select,
textarea,
button {
	outline: none;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2);
}

.wp-site-blocks>div,
.entry-content>div,
.wp-site-blocks>section,
.entry-content>article {
	margin: 0;
}

/* Button Styles */
.wp-element-button,
.wp-block-button__link,
.button {
	--btnColor: var(--wp--preset--color--custom-color-400);
	--btnColorHover: color-mix(in srgb, var(--btnColor) 85%, #000000);
	--btnTextColor: var(--wp--preset--color--neutral-white);
	--btnTextColorHover: var(--wp--preset--color--neutral-white);
	background: var(--btnColor);
	color: var(--btnTextColor);

	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.3s;

	&:hover {
		background: var(--btnColorHover);
		color: var(--btnTextColorHover);
	}
}

.no-min-width .wp-element-button {
	min-width: auto;
}

.is-style-secondary-fill .wp-element-button,
.is-style-secondary-outline .wp-element-button {
	--btnColor: var(--wp--preset--color--neutral-600);
	--btnColorHover: color-mix(in srgb, var(--btnColor) 85%, #000000);
	--btnTextColor: var(--wp--preset--color--neutral-white);

	&:hover {
		background: var(--btnColor);
		color: var(--btnTextColor);
	}
}

.is-style-outline .wp-element-button,
.is-style-secondary-outline .wp-element-button {
	background: none;
	border: 1px solid var(--btnColor);
	color: var(--btnColor);

	&:hover {
		background: var(--btnColor);
		color: var(--btnTextColor);
	}
}

/*** WP BLOCKS ***/
.wp-block-separator {
	border-top: 1px solid;
}

/*** HELPERS ***/
.w-100 {
	width: 100%;
}

/*** HEADINGS ***/
.is-style-section_title {
	font-size: 42px;
	line-height: 120%;
	text-transform: uppercase;
	font-weight: 700;
}

h1.is-style-section_title {
	font-size: var(--wp--preset--font-size--display-lg);
	letter-spacing: 0;
}

h3.is-style-section_title {
	font-size: var(--wp--preset--font-size--display-md);
}

.is-style-section_subtitle {
	font-size: var(--wp--preset--font-size--xl);
	font-weight: normal;
	line-height: 130%;
	letter-spacing: 2px;
}

figure.icon {
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*** GRAVITY FORMS ***/
.gform_description:empty,
.gform_heading {
	display: none !important;
}

.form_wrapper .gform_wrapper.gravity-theme input[type=text],
.form_wrapper .gform_wrapper.gravity-theme input[type=email],
.form_wrapper .gform_wrapper.gravity-theme input[type=tel],
.form_wrapper .gform_wrapper.gravity-theme input[type=number],
.form_wrapper .gform_wrapper.gravity-theme select,
.form_wrapper .gform_wrapper.gravity-theme textarea {
	height: 44px;
	border-radius: 9px;
	border: 1px solid var(--wp--preset--color--neutral-200);
	padding: 10px 14px;
	margin-bottom: 3px;
}

.form_wrapper .gform_wrapper.gravity-theme input[type=text]::placeholder,
.form_wrapper .gform_wrapper.gravity-theme input[type=email]::placeholder,
.form_wrapper .gform_wrapper.gravity-theme input[type=tel]::placeholder,
.form_wrapper .gform_wrapper.gravity-theme input[type=number]::placeholder,
.form_wrapper .gform_wrapper.gravity-theme select::placeholder,
.form_wrapper .gform_wrapper.gravity-theme textarea::placeholder {
	color: #CBCBCB;
	text-transform: capitalize;
}

.form_wrapper .gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 19px;
}

.form_wrapper .gform_wrapper.gravity-theme .gfield_label {
	display: block;
	color: #1E1E1E;
	font-size: 13px;
	font-weight: 500;
	line-height: 180%;
}

.gform_footer {
	justify-content: start;
	padding-bottom: 0 !important;
}

.gform_footer .button {
	display: flex;
	padding: 10px 16px;
	justify-content: center;
	align-items: center;
	min-width: 130px;
	gap: 10px;
	border: none;
	border-radius: 99px;
	color: #FFF;
	font-size: 14px;
	line-height: 170%;
	text-transform: capitalize;
	margin: 0 !important;
}

.form_section_box {
	background-image: url(../images/diagonal_bg.svg);
	background-size: auto 100%;
	background-position: top right;
	background-repeat: no-repeat;
}

/*** GENERAL SPECIALS ***/

/*** HEADER ***/
header.wp-block-template-part {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}

.admin-bar header.wp-block-template-part {
	top: 32px;
}

.float_active__ header.wp-block-template-part {
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
}

.custom-logo-link img {
	transition: all 0.3s ease;
}

.float_active .custom-logo-link img {
	max-width: 80px;
}

/*** HEADER MENU ***/
#header_menu {
	list-style: none;
	padding: 0;
	margin: 0;
	gap: var(--wp--preset--spacing--lg);
	font-size: 14px;
	font-weight: 300;
}

#header_menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	text-decoration: none;
	color: currentColor;
	transition: all 0.3s;
}

#header_menu a:hover {
	color: var(--wp--preset--color--custom-color-500);
}

#header_menu li {
	position: relative;
}

#header_menu>li>a {
	padding-block: 10px;
}

#header_menu .menu-item-has-children>a::after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url(../images/down.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#header_menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 200px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	list-style: none;
	background: #FFF;
	color: #000;
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #E5E5E5;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	z-index: 100;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

#header_menu .menu-item-has-children:hover .sub-menu {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

/*** MOBILE MENU COMPONENT ***/
#menu_trigger {
	position: relative;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	cursor: pointer;
}

#menu_trigger::after {
	content: '';
	position: absolute;
	top: calc(50% - 1px);
	left: calc(50% - 12.5px);
	width: 25px;
	height: 2px;
	background: currentColor;
	transition: all 0.5s;
}

.menu_open #menu_trigger::after {
	transform: translateX(100%);
	opacity: 0;
}

#menu_trigger i {
	position: relative;
	width: 25px;
	height: 16px;
}

#menu_trigger i::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	transition: all 0.5s;
}

.menu_open #menu_trigger i::before {
	transform: translate(0px, 5px) rotate(45deg);
}

#menu_trigger i::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	transition: all 0.5s;
}

.menu_open #menu_trigger i::after {
	transform: translate(0px, -9px) rotate(-45deg);
}

#mobile_menu_container {
	position: absolute;
	top: 100%;
	width: 100%;
	left: 0;
	background: #FFF;
	color: #000;
	padding: 25px 30px;
	border-radius: 35px;
	margin-top: 10px;
	clip-path: inset(0 0 100% 0);
	transform: translateY(-20px);
	transition: all 0.3s;
}

.menu_open #mobile_menu_container {
	clip-path: inset(0 0 0 0);
	transform: translateY(0);
}

#header_menu_mobile {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 16px;
}

#header_menu_mobile a {
	display: block;
	color: currentColor;
	text-decoration: none;
	transition: all 0.3s;
}

#header_menu_mobile .sub-menu {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 5px 0 5px 15px;
	gap: 5px;
	opacity: 0.8;
}

.mobile_button {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
	padding: 10px 16px;
	border-radius: 99px;
	border: 1px solid #E5E5E5;
	background: var(--wp--preset--color--custom-color-400);
	color: #FFF;
	text-decoration: none;
}

#header_menu_mobile .mobile_button {
	display: flex;
}

/*** FOOTER ***/
footer.wp-block-template-part a {
	transition: all 0.3s;
}

/*** COMPONENTS ***/

/*** MAIN FLAVORS CAROUSEL ***/
.swiper_flavors_carousel{
	position: relative;
	z-index: 10;
}
.main_flavors_carousel_component {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.main_flavors_carousel_component_main {
	padding-top: 100px;
}

.main_flavors_carousel_component_main::before {
	content: '';
	position: absolute;
	top: 50px;
	left: 50%;
	width: 100%;
	max-width: 1000px;
	height: 1px;
	background: #B0B0B0;
	transform: translateX(-50%);
}

.main_flavors_carousel {
	position: relative;
	display: flex;
	transition: transform 0.3s ease;
	will-change: transform;
	z-index: 9;
}

.main_flavors_carousel_slide {
	width: 20%;
	transition: width 0.3s ease;
	flex-shrink: 0;
}

.main_flavors_carousel_slide.active {
	width: 45%;
}

.main_flavors_carousel_slide img {
	width: 18vw;
	max-width: 260px;
}

.main_flavors_carousel_pagination {
	position: relative;
	border-bottom: 1px solid #B0B0B0;
	max-width: 1000px;
	margin: 70px auto 40px auto;
	display: flex;
	justify-content: center;
	gap: 30px;
	z-index: 10;
}

.main_flavors_carousel_pagination_item {
	height: 7px;
	width: 150px;
	background: #B0B0B0;
	cursor: pointer;
	border-bottom: none;
	opacity: 0.2;
	transition: transform 0.3s ease, background 0.3s ease;
}

.main_flavors_carousel_pagination_item.active {
	opacity: 1;
}

.main_flavors_carousel_content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 330px;
	text-align: center;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
}

.main_flavors_carousel_button {
	display: inline-block;
	padding: 15px 70px;
	background: #D9D9D9;
	color: #000;
	font-size: 20px;
	font-weight: 400;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
}

.main_flavors_carousel_component[data-active-flavor="tonica"] .main_flavors_carousel_button {
	background: #CCAD05;
}

.main_flavors_carousel_component[data-active-flavor="ginger-ale"] .main_flavors_carousel_button {
	background: #095C27;
	color: #FFF;
}

.main_flavors_carousel_component[data-active-flavor="mocktails"] .main_flavors_carousel_button {
	background: #FF9899;
	color: #FFF;
}

.main_flavors_carousel_svg_name {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transition: all 0.3s ease;
}

.main_flavors_carousel_component[data-active-flavor="mineral"] .main_flavors_carousel_content_mineral,
.main_flavors_carousel_component[data-active-flavor="mineral"] .main_flavors_carousel_svg_name_mineral {
	opacity: 1;
	visibility: visible;
}

.main_flavors_carousel_component[data-active-flavor="ginger-ale"] .main_flavors_carousel_content_ginger-ale,
.main_flavors_carousel_component[data-active-flavor="ginger-ale"] .main_flavors_carousel_svg_name_ginger-ale {
	opacity: 1;
	visibility: visible;
}

.main_flavors_carousel_component[data-active-flavor="mocktails"] .main_flavors_carousel_content_mocktails,
.main_flavors_carousel_component[data-active-flavor="mocktails"] .main_flavors_carousel_svg_name_mocktails {
	opacity: 1;
	visibility: visible;
}

.main_flavors_carousel_component[data-active-flavor="tonica"] .main_flavors_carousel_content_tonica,
.main_flavors_carousel_component[data-active-flavor="tonica"] .main_flavors_carousel_svg_name_tonica {
	opacity: 1;
	visibility: visible;
}

.main_flavors_carousel_component.parent {
	transition: background 0.3s ease;
}

.main_flavors_carousel_component.parent[data-active-flavor="ginger-ale"] {
	background: #0D1911;
}

.main_flavors_carousel_component.parent[data-active-flavor="mocktails"] {
	background: #4C1D1D;
}

.main_flavors_carousel_component.parent[data-active-flavor="tonica"] {
	background: #736206;
}

.main_flavors_carousel_description {
	margin-top: 45px;
}

.main_flavors_carousel_description p {
	font-size: 15px;
	line-height: 120%;
}

/*** SCROLL ANIMATION ***/
.scroll_animation_areas {
	position: relative;
	max-width: 100%;
}

#scroll_animation_area_1 {
	height: 200vh;
	position: relative;
}

.scroll_animation_item_1_wrapper {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.scroll_animation_item_1_image_1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/historia_1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(var(--scale, 1));
	will-change: transform;
}


#scroll_animation_area_2 {
	height: 400vh;
	position: relative;
}

.scroll_animation_item_2_wrapper {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.scroll_animation_item_2_image_1 {
	position: absolute;
	bottom: var(--sa2_bottom, 40px);
	left: 50%;
	width: var(--sa2_width, 70%);
	height: calc(var(--sa2_height, 430) * 1px);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/mg_1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	transform: translateX(-50%);
	will-change: transform;
}

.scroll_animation_item_2_image_2 {
	position: absolute;
	top: var(--sa2_2_top, 0);
	left: 50%;
	width: var(--sa2_2_width, 70%);
	height: calc(var(--sa2_2_height, 430) * 1px);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/mg_1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	transform: translateX(-50%);
	will-change: transform;
	opacity: 0;
}

.sa_2_content {
	transition: all 2s ease;
	opacity: 0;
}

.sa_2_content>* {
	opacity: var(--sa2_content_opacity, 0);
}

.area_2_maxpoint {
	.scroll_animation_item_2_image_1 {
		opacity: 0;
	}

	.scroll_animation_item_2_image_2 {
		opacity: 1;
	}

	.sa_2_content {
		opacity: 1;
	}
}

.sa_2_content,
.sa_3_content {
	position: absolute;
	top: calc(50% + 80px);
	left: 16vw;
	width: 300px;
	transform: translateY(-50%);
}

.sa_2_content img,
.sa_3_content img {
	width: 50px;
}

.sa_2_content h4,
.sa_3_content h4 {
	color: #FFF;
	font-size: 18px;
	line-height: 124%;
	letter-spacing: 1px;
	margin: 5px 0 0 0;
	font-weight: 400;
}

.sa_3_content {
	opacity: var(--sa3_content_opacity, 0);
}

#scroll_animation_area_3 {
	height: 200vh;
	position: relative;
}

.scroll_animation_item_3_wrapper {
	position: sticky;
	top: 200px;
	left: 0;
	width: 100%;
	height: 100vh;
	margin-bottom: 20px;
}

.scroll_animation_item_3_image_1 {
	position: absolute;
	top: var(--sa3_top, 0);
	left: var(--sa3_left, 15vw);
	width: var(--sa3_width, 44vw);
	height: var(--sa3_height, 450px);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/mg_2.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	will-change: transform;
	z-index: 5;
}

.scroll_animation_item_3_image_2 {
	position: absolute;
	top: 0;
	right: 15vw;
	width: 24vw;
	height: 400px;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/sa_4.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	will-change: transform;
}

#scroll_animation_area_4 {
	height: 200vh;
	position: relative;
}

.scroll_animation_item_4_wrapper {
	position: sticky;
	top: 200px;
	left: 0;
	width: 100%;
	height: 100vh;
}

.scroll_animation_item_4_image_1 {
	position: absolute;
	top: 0;
	left: 15vw;
	width: 24vw;
	height: 400px;
	background-image: url(../images/sa_5.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	will-change: transform;
}

.scroll_animation_item_4_image_2 {
	position: absolute;
	top: var(--sa4_top, 0);
	right: var(--sa4_right, 10vw);
	width: var(--sa4_width, 50vw);
	height: var(--sa4_height, 400px);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/mg_3.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	will-change: transform;
	z-index: 5;
}

.sa_4_content {
	position: absolute;
	bottom: 100px;
	right: 10vw;
	width: 430px;
	opacity: 0;
	transition: all 2s ease;
}

.area_4_active .sa_4_content {
	opacity: 1;
}

.sa_4_content h4 {
	color: #FFF;
	font-size: 16px;
	line-height: 124%;
	letter-spacing: 1px;
	margin: 5px 0 0 0;
	font-weight: 400;
}

#scroll_animation_area_5 {
	position: relative;
	top: -200px;
	height: 200vh;
}

.scroll_animation_item_5_wrapper {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

.scroll_animation_item_5_image_1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/sa_7.jpg);
	background-size: cover;
	background-position: center bottom -50px;
	background-repeat: no-repeat;
	opacity: var(--sa5_opacity, 0);
	will-change: opacity;
}

.sa_5_content {
	position: absolute;
	top: 160px;
	left: 50%;
	width: 100%;
	max-width: 970px;
	text-align: center;
	opacity: var(--sa5_content_opacity, 0);
	transform: translateY(var(--sa5_content_top, 0)) translateX(-50%);
}

.sa_5_content_icon {
	width: 40px;
	margin-bottom: 20px;
}

.sa_5_content h4 {
	color: #FFF;
	font-size: 18px;
	line-height: 124%;
	letter-spacing: 1px;
	margin: 0;
	font-weight: 400;
}

.sa_5_content h5 {
	color: #FFF;
	font-size: 14px;
	line-height: 124%;
	letter-spacing: 1px;
	margin: 35px 0 0 0;
	font-weight: 300;
}

#scroll_animation_area_6 {
	position: relative;
	top: -200px;
	height: 300vh;
	position: relative;
}

.scroll_animation_item_6_wrapper {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.scroll_animation_item_6_image_1 {
	position: absolute;
	top: var(--sa6_top, 200px);
	left: 50%;
	width: var(--sa6_width, 70%);
	height: calc(var(--sa6_height, 430) * 1px);
	background-image: url(../images/sa_8.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	transform: translateX(-50%);
	will-change: transform;
}

.sa_6_content {
	position: absolute;
	top: 160px;
	left: 50%;
	width: 100%;
	max-width: 700px;
	text-align: center;
	opacity: var(--sa6_content_opacity, 0);
	transform: translateY(var(--sa6_content_top, 0)) translateX(-50%);
}

.sa_6_content_icon {
	width: 40px;
	margin-bottom: 10px;
}

.sa_6_content h4 {
	color: #101010;
	font-size: 18px;
	line-height: 124%;
	letter-spacing: 1px;
	margin: 0;
	font-weight: 400;
}

/*** PRODUCTS CAROUSEL ***/
.products_carousel_item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding-top: 70px;
}

.products_carousel_item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-width: 2px 2px 0 2px;
	border-style: solid;
	border-color: #FFF;
	border-radius: 200px 200px 0 0;

	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0));
	-webkit-mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0));
	mask-size: 100% 100%;
	mask-repeat: no-repeat;
}

.products_carousel_item_image {
	position: relative;
	z-index: 10;
}

.products_carousel_item_image img {
	max-height: 60vh;
}

.products_carousel_item h4 {
	position: relative;
	z-index: 10;
	color: #FFF;
	font-size: 14px;
	line-height: 124%;
	letter-spacing: 1px;
	margin: 15px 0 0 0;
	font-weight: 400;
	text-transform: uppercase;
}

.product_carousel_info_tab {
	text-align: center;
}

.product_carousel_info_title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
	line-height: 124%;
	letter-spacing: 1px;
	margin: 0;
	font-weight: 400;
	text-transform: uppercase;
	cursor: pointer;
}

.product_carousel_info_title::after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB4PSIwIiB5PSIwIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiIGNsYXNzPSIiPjxnPjxwYXRoIGQ9Ik0xMiAxNmExIDEgMCAwIDEtLjcxLS4yOWwtNi02YTEgMSAwIDAgMSAxLjQyLTEuNDJsNS4yOSA1LjMgNS4yOS01LjI5YTEgMSAwIDAgMSAxLjQxIDEuNDFsLTYgNmExIDEgMCAwIDEtLjcuMjl6IiBkYXRhLW5hbWU9IjE2IiBmaWxsPSIjZmZmZmZmIiBvcGFjaXR5PSIxIiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIj48L3BhdGg+PC9nPjwvc3ZnPg==);
	transition: all 0.3s;
}

.open .product_carousel_info_title::after {
	transform: rotate(180deg);
}

.products_carousel_item_description {
	display: none;
}

.product_carousel_info {
	width: 100%;
	max-width: 660px;
	margin: 0 auto;
}

.product_carousel_info_content {
	clip-path: inset(0 0 100% 0);
	transition: all 0.3s;
}

.open .product_carousel_info_content {
	clip-path: inset(0 0 0 0);
}

.product_carousel_info_content p {
	font-size: 14px;
	font-weight: 300;
}

.product_carousel_info_tab {
	display: none;
}

.products_carousel_component[data-product-active="agua-tonica"] {
	background: linear-gradient(to bottom, #A89006, #B2A249);
}

.products_carousel_component[data-product-active="ginger-ale"] {
	background: linear-gradient(to bottom, #0C2D18, #496051);
}

.products_carousel_component[data-product-active="cocteles-0-0-alcohol"] {
	background: linear-gradient(to bottom, #633033, #856264);
}

#scroll_animation_wrapper {
	margin-bottom: -200px;
}

.products_carousel_component {
	padding: 130px 0;
	width: 100%;
	max-width: 100%;
}

.product_carousel_info_products {
	margin-top: -80px;
}

.products_carousel_main_description {
	width: 100%;
	max-width: 500px;
}

.products_carousel_main_description p {
	font-size: 16px;
    text-transform: uppercase;
    font-weight: 100;
}

.products_carousel_main_wrapper {
	padding-top: 100px;
}

.products_carousel_buttons {
	margin-top: 100px;
}

.products_carousel_button_next {
	display: inline-block;
	width: 50px;
	height: 50px;
	background-image: url(../images/next_arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

/*** RECETAS SLIDER ***/
.recetas_slider_component {
	max-width: 100%;
}

.recetas_slider_wrapper {
	position: relative;
}

.recetas_slider_item {
	height: 100vh;
	width: 100%;
	background-image: linear-gradient(180deg, #0E0E0E 0%, rgba(14, 14, 14, 0) 30%), linear-gradient(180deg, rgba(0, 0, 0, 0.07) 15.49%, rgba(0, 0, 0, 0.70) 90%), var(--bgImage);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.recetas_slider {
	--swiper-pagination-bottom: 50px;
	--swiper-pagination-bullet-horizontal-gap: 10px;
	--swiper-pagination-bullet-border-radius: 10px;
	--swiper-pagination-bullet-inactive-color: #FFF;
	--swiper-pagination-color: #FFF;
	--swiper-pagination-bullet-width: 45px;
	--swiper-pagination-bullet-height: 5px;
}

.swiper-pagination-bullet {
	transition: all 0.3s;
}

.swiper-pagination-bullet-active {
	width: 100px;
}

.recetas_slider_content {
	position: absolute;
	bottom: 100px;
	left: 50%;
	width: 100%;
	max-width: 1000px;
	text-align: center;
	transform: translateX(-50%);
	z-index: 10;
}

.recetas_slider_content h1 {
	color: #FFF;
	text-align: center;
	font-size: 28px;
	font-weight: 400;
	line-height: 124%;
	letter-spacing: -1.44px;
	text-transform: uppercase;
}

.recetas_videos_grid_item {
	display: none;
}

.recetas_videos_grid_item_video {
	position: relative;
	aspect-ratio: 9/14;
	overflow: hidden;
	filter: grayscale(100%);

	&:hover {
		filter: grayscale(0%);
	}

	video {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: all 0.3s;
		transform: translate(-50%, -50%) scale(1.3);

		&:hover {
			transform: translate(-50%, -50%) scale(1);
		}
	}
}

.video_item_display_recipe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	padding: 15px 30px;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	color: #FFF;
	font-size: 14px;
	line-height: 124%;
	letter-spacing: 1px;
	margin: 0;
	font-weight: 400;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 99px;
	transition: all 0.3s;
}

.content_is_active .video_item_display_recipe {
	visibility: hidden;
	opacity: 0;
}

.recetas_slider_component {
	--swiper-navigation-color: #FFF;
}

.recetas_videos_grid_item_video_content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - 60px);
	max-width: 400px;
	padding: 60px 40px;
	background-color: #101010DB;
	backdrop-filter: blur(10px);
	color: #FFF;
	gap: 30px;
	transform: translate(-50%, -50%);
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
}

.content_is_active .recetas_videos_grid_item_video_content {
	visibility: visible;
	opacity: 1;
}

.recetas_overlay_close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB4PSIwIiB5PSIwIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiIGNsYXNzPSIiPjxnPjxwYXRoIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTUgMTcuNTg2YTEgMSAwIDEgMCAxLjQxNSAxLjQxNUwxMiAxMy40MTQgMTcuNTg2IDE5QTEgMSAwIDAgMCAxOSAxNy41ODZMMTMuNDE0IDEyIDE5IDYuNDE0QTEgMSAwIDAgMCAxNy41ODUgNUwxMiAxMC41ODYgNi40MTQgNUExIDEgMCAwIDAgNSA2LjQxNEwxMC41ODYgMTJ6IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIG9wYWNpdHk9IjEiIGRhdGEtb3JpZ2luYWw9IiMwMDAwMDAiPjwvcGF0aD48L2c+PC9zdmc+);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	transition: all 0.3s;

	&:hover {
		transform: scale(1.1);
	}
}

.recetas_videos_grid_item_video_content_widget h4 {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 124%;
	letter-spacing: 1px;
	margin: 0;
	font-weight: 400;
	text-align: center;
	margin: 0;
	padding: 10px 0;
	border-width: 1px 0;
	border-style: solid;
	border-color: #FFF;
}

/*** RECETAS GRID SECTION ***/
.receta_sidebar_open {
	overflow: hidden;
}

.recetas_grid_section {
	padding: 90px 0;
}

.receta_sidebar_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 98;
	display: none;
}

.receta_sidebar_overlay.active {
	display: inline-block;
}

.receta_sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: 50%;
	max-width: 450px;
	height: 100vh;
	overflow: auto;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 120px 50px 50px;
	z-index: 99;
	transform: translateX(100%);
	transition: all 0.5s;
}

.receta_sidebar.active {
	transform: translateX(0);
}

.close_receta {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 40px;
	right: 40px;
	cursor: pointer;
}

.close_receta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 1px;
	background: #FFF;
	transform: translate(-50%, -50%) rotate(45deg);
}

.close_receta::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 1px;
	background: #FFF;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.receta_sidebar_title {
	font-family: var(--secondaryFont);
	text-transform: uppercase;
	font-size: 30px;
	line-height: 110%;
	margin-bottom: 20px;
}

.receta_widget_title {
	text-align: center;
	text-transform: uppercase;
	font-family: var(--secondaryFont);
	font-size: 18px;
	padding: 10px 0;
	border-width: 1px 0;
	border-style: solid;
	border-color: #FFF;
}

.receta_widget_content {
	padding: 20px 0;
	font-size: 14px;
	line-height: 120%;
}

.receta_widget_content p {
	font-size: 15px;
	line-height: 140%;
}

.receta_item {
	cursor: pointer;
	text-align: center;
}

.receta_item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 95%;
	/* background: linear-gradient(to bottom,  rgba(173,173,173,1) 0%,rgba(173,173,173,0.96) 28%,rgba(0,0,0,0) 100%); */
	border-radius: 999px 999px 0 0;
	z-index: -1;
	transition: all 0.5s;
}

.receta_item_image {
	aspect-ratio: 1;
	position: relative;
}

.receta_item_image img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.receta_item_data h3 {
	font-size: 24px;
	font-family: var(--secondaryFont);
	text-transform: uppercase;
	line-height: 110%;
}

.item_excerpt {
	font-size: 16px;
	line-height: 120%;
	padding: 0 30px;
	font-weight: 300;
}

.scroll_animation_item_1_text{
	position: absolute;
    display: flex;
	align-items: center;
    bottom: 50px;
    left: 90px;
    z-index: 10;
    color: #FFF;
    font-size: 20px;
    line-height: 110%;
    text-transform: uppercase;
    font-weight: 300;
	font-family: var(--wp--preset--font-family--lexend-giga);
}
.scroll_animation_item_1_text hr{
	content: '';
	display: inline-block;
	width: 200px;
	height: 1px;
	background: #FFF;
	margin-left: 10px;
	margin-right: 10px;
}

.wp-container-core-group-is-layout-3a1962e0,
.wp-container-core-group-is-layout-7ea233ed{
	gap: 40px !important;
}

.play_button {
    display: inline-block;
    width: 60px;
    height: 60px;
    cursor: pointer;
    margin-bottom: 20px;
    background-image: url(../images/play-button.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.mfp-iframe-holder .mfp-content {
    max-width: 1100px;
}
.flavor_slide img{
	transition: all 0.3s;
}
.flavor_slide:hover img{
	transform: scale(1.1);
}

.product_carousel_info_item img{
	transition: all 0.3s;

	&:hover {
		transform: scale(1.1);
	}
}

/*** MEDIA QUERIES ***/

@media (max-width: 992px) {
	:root {
		--wp--preset--font-size--display-xl: clamp(40px, 2.4rem + ((1vw - 3.2px) * 0.703), 64px);
	}

	.wp-site-blocks>.entry-content>.is-layout-constrained {
		padding-inline: 15px !important;
	}

	header.wp-block-template-part>* {
		padding-inline: 15px;
	}

	.main_flavors_carousel_content {
		position: relative;
		left: initial;
		top: initial;
		transform: initial;
		margin-top: 30px;
		display: none;
	}

	.main_flavors_carousel_component[data-active-flavor="mineral"] .main_flavors_carousel_content_mineral,
	.main_flavors_carousel_component[data-active-flavor="tonica"] .main_flavors_carousel_content_tonica,
	.main_flavors_carousel_component[data-active-flavor="ginger-ale"] .main_flavors_carousel_content_ginger-ale,
	.main_flavors_carousel_component[data-active-flavor="mocktails"] .main_flavors_carousel_content_mocktails {
		display: block;
	}

	#scroll_animation_wrapper {
		padding-inline: 0 !important;
		margin-bottom: 0;
	}

	.has-display-xs-font-size {
		font-size: 18px !important;
	}

	.scroll_animation_areas div,
	.scroll_animation_areas h4 {
		max-width: 100%;
	}

	.products_carousel_item_image img {
		max-height: 40vh;
	}
}

@media (max-width: 780px) {}

@media (max-width: 992px) {

	/* Mobile Scroll Animation Overrides */
	#scroll_animation_area_1,
	#scroll_animation_area_2,
	#scroll_animation_area_3,
	#scroll_animation_area_4,
	#scroll_animation_area_5,
	#scroll_animation_area_6 {
		min-height: 70vh !important;
		height: auto !important;
		top: 0 !important;
		margin-bottom: 0 !important;
		padding-bottom: 0;
		display: flex !important;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}

	.scroll_animation_item_1_wrapper,
	.scroll_animation_item_2_wrapper,
	.scroll_animation_item_3_wrapper,
	.scroll_animation_item_4_wrapper,
	.scroll_animation_item_5_wrapper,
	.scroll_animation_item_6_wrapper {
		position: relative !important;
		height: auto !important;
		width: 100% !important;
		top: 0 !important;
		margin-bottom: 0 !important;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.scroll_animation_item_1_image_1,
	.scroll_animation_item_2_image_1,
	.scroll_animation_item_3_image_1,
	.scroll_animation_item_3_image_2,
	.scroll_animation_item_4_image_1,
	.scroll_animation_item_4_image_2,
	.scroll_animation_item_5_image_1,
	.scroll_animation_item_6_image_1 {
		position: relative !important;
		width: 100% !important;
		height: 70vh !important;
		min-height: 300px;
		transform: none !important;
		opacity: 0;
		/* Start hidden for animation */
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		background-attachment: scroll !important;
		transition: opacity 0.8s ease, transform 0.8s ease;
		transform: translateY(30px) !important;
	}
	.scroll_animation_item_4_image_1,
	.scroll_animation_item_3_image_2{
		height: 30vh !important;
	}
	.scroll_animation_item_1_image_1.visible,
	.scroll_animation_item_2_image_1.visible,
	.scroll_animation_item_3_image_1.visible,
	.scroll_animation_item_3_image_2.visible,
	.scroll_animation_item_4_image_1.visible,
	.scroll_animation_item_4_image_2.visible,
	.scroll_animation_item_5_image_1.visible,
	.scroll_animation_item_6_image_1.visible {
		opacity: 1 !important;
		transform: translateY(0) !important;
	}

	.scroll_animation_item_2_image_2 {
		display: none !important;
	}

	.sa_2_content,
	.sa_3_content,
	.sa_4_content,
	.sa_5_content,
	.sa_6_content {
		position: relative !important;
		opacity: 0 !important;
		/* Start hidden */
		transform: translateY(30px) !important;
		top: 70px !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		width: 100% !important;
		max-width: 100% !important;
		padding: 0 20px;
		text-align: center;
		margin-bottom: 40px;
		transition: opacity 0.8s ease, transform 0.8s ease;
	}

	.sa_2_content.visible,
	.sa_3_content.visible,
	.sa_4_content.visible,
	.sa_5_content.visible,
	.sa_6_content.visible {
		opacity: 1 !important;
		transform: translateY(0) !important;
	}
	.sa_6_content{
		top: 30px !important;
	}

	.sa_2_content>*,
	.sa_3_content>*,
	.sa_4_content>*,
	.sa_5_content>*,
	.sa_6_content>* {
		opacity: 1 !important;
		/* Override variable opacity */
	}

	.sa_5_content,
	.sa_6_content {
		margin-top: 0;
	}
	.product_carousel_info_products{
		margin-top: 0;
	}
	.product_carousel_info_content{
		clip-path: inset(0 0 0 0);
		display: none;
	}
	.open .product_carousel_info_content{
		display: block;
	}
	#products_carousel_wrapper{
		padding-inline: 0 !important;
	}
	.products_carousel_component{
		padding:30px 0;
	}
	.products_carousel_main_wrapper {
		padding-top: 0;
	}
	.sa_5_content h4 {
		font-size: 12px;
	}
	.sa_5_content h5 {
		font-size: 12px;
		margin: 15px 0 0 0;
	}
	.sa_6_content h4 {
		font-size: 12px;
	}
	.scroll_animation_item_1_text {
		width: calc(100% - 40px);
		justify-content: center;
		left: 20px;
		font-size: 16px;
	}
	.scroll_animation_item_1_text hr{
		width: 25%;
	}
	.receta_sidebar{
		width: 100%;
		max-width: 100%;
	}
	.receta_sidebar_title {
		font-size: 20px;
		text-align: center;
	}
}