/*
Theme Name: Genesis Block Theme Child
Template:   genesis-block-theme
Version:    1.0.0
*/


@font-face {
	font-family: "Inter";
	src: url("fonts/inter-v20-latin-regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("fonts/inter-v20-latin-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Impact";
	src: url("fonts/impact.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	ascent-override: 87%;
	descent-override: 13%;
}

:root{
	--brand-pink: #F39DAA;
	--brand-blue: #002D73;
	--brand-blue-light: #1463AC;
	--brand-blue-form: #284696;
	--brand-yellow: #FFE163;
	--brand-green: #A0C41E;
	--font-family-brand: "Impact", Impact, sans-serif;
	--font-family-form: "Inter", sans-serif;
	--gutter-outter: 10rem;
	--max-width: 120rem;
	--font-size-h1: 55px;
	--font-size-base: 20px;
	--negative-m: clamp(-7rem, -5vw, -2rem);
	@media screen and (max-width: 900px) {
		--gutter-outter: 5rem;
	}
	@media screen and (max-width: 500px) {
		--font-size-h1: 45px;
		--font-size-base: 18px;
		--gutter-outter: 5vw;
		--negative-m: clamp(-20rem, -20vw, -2rem);
	}
	@media screen and (max-width: 450px) {
		--font-size-h1: 35px;
		--font-size-base: 16px;
	}

}

html.cc-lock-scroll {
	overflow: hidden;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	min-height: 100dvh;
	overflow-x: clip !important;
	font-family: var(--font-family-brand);
	font-weight: 400;
	background: var(--brand-yellow);
}


#page {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	width: 100%;
	padding-top: 0;
}

.site-content {
	padding: 0;
}


/* TYPOGRAPHY */

h1, .cc-modal-card .cc-tag, .error-404-header {
	font-family: var(--font-family-brand);
	font-size: var(--font-size-h1);
	font-style: normal;
	font-weight: 400;
	line-height: 1.09090909091;
	letter-spacing: 2.75px;
	text-transform: uppercase;
}

.wp-block-heading.-stroke, .cc-modal-card .cc-tag, .error-404-header {
	color: var(--brand-yellow);
	-webkit-text-stroke-width: 20px;
	-webkit-text-stroke-color: var(--brand-blue-light);
	paint-order: stroke fill;
}

.wp-block-heading.-narrow {
	max-width: var(--max-width);
	padding-inline: var(--gutter-outter);
	margin-inline: auto;
}

.cc-watchamacallit {
	font-family: "cc-whatchamacallit-variable", sans-serif;
	font-variation-settings: "ital" 0, "wdth" 50, "wght" 400;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 1.25px;
}

.cc-watchamacallit h2, .cc-watchamacallit h3, .cc-watchamacallit h4, .cc-watchamacallit h5, .cc-watchamacallit h6 {
	font-family: "cc-whatchamacallit-variable", sans-serif;
	font-variation-settings: "ital" 0, "wdth" 50, "wght" 400;
}

.-blue-text {
	color: var(--brand-blue-light);
}

.-blue-text h1 {
	margin-bottom: 4rem;
}

/* LANGUAGE SWITCHER MODAL */

body.language-switcher-modal-open {
	overflow: hidden;
	position: fixed;
}

.language-switcher-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}

.language-switcher-modal[hidden] {
	display: none;
}

.language-switcher-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 45, 115, 0.75);
}

.language-switcher-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 60rem);
	padding: 4rem 3rem;
	border-radius: 20px;
	background: var(--brand-blue-light);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	text-align: center;
}

.language-switcher-modal__title {
	margin: 0 0 1rem;
	color: white;
	font-family: var(--font-family-brand);
	font-size: clamp(2.8rem, 5vw, 4rem);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.language-switcher-modal__subtitle {
	margin: 0 0 3rem;
	color: var(--brand-yellow);
	font-family: var(--font-family-brand);
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.language-switcher-modal__options {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.language-switcher-modal__option {
	display: block;
	padding: 1.6rem 8rem;
	border-radius: 30px;
	color: white;
	background: var(--brand-blue-light);
	border: 2px solid white;
	font-family: var(--font-family-brand);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.15s, border-color 0.15s;
	width: fit-content;
}

.language-switcher-modal__option:hover,
.language-switcher-modal__option:focus-visible {
	border-color: var(--brand-yellow);
	color: white;
	outline: none;
}

/* HEADER */

.site-header {
	background-color: transparent;
	background-image: url('assets/swoosh/header-verlauf.svg');
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.30));
}

.site-header::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 100%;
	height: 100rem;
	background: var(--brand-yellow);
}

.site-identity {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-block: 7rem;
}

.site-logo__image {
	display: block;
	width: 40rem;
	height: auto;
}

.mobile-navigation {
	display: none;
}

/* FOOTER */

.site-footer {
	z-index: 999;
	background: transparent;
}

.site-footer a {
	color: var(--brand-blue-light);
	text-transform: uppercase;
	font-size: var(--font-size-base);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1px;
	transition: color .15s;
}

.site-footer a:hover, .site-footer a:focus-visible {
	color: var(--brand-blue-light);
}


.site-footer .site-info.-logo {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}


.footer-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4rem;
	flex: 1;
	@media screen and (max-width: 1200px) {
		flex-direction: column;
		gap: 1rem;
	}
	@media screen and (max-width: 450px) {
		order: 1;
	}
}



.site-footer .menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 4rem;
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	@media screen and (max-width: 805px) {
		gap: 1rem;
		flex-direction: column;
	}
}

.site-footer .menu.footer-language-switcher {
	gap: 2rem;
	@media screen and (max-width: 805px) {
		gap: 2rem;
		flex-direction: row;
	}
}

.site-footer .menu-item {
	margin: 0;
	position: relative;
	text-align: center;
}

.site-footer .menu-item::after, .menu::after {
	content: "";
	position: absolute;
	right: -2rem;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 60%;
	background: var(--brand-blue-light);
	margin-top: -.1rem;
}

.site-footer .menu-item:last-child::after {
	content: none;
}

.menu.footer-language-switcher::after {
	content: none;
}

.menu::after {
	@media screen and (max-width: 1200px) {
		content: none;
	}
}

.site-footer .menu-item::after {
	@media screen and (max-width: 805px) {
		content: none;
	}
}



.site-footer .footer-language-switcher .menu-item.is-active a,
.site-footer .footer-language-switcher a[aria-current="page"] {
	opacity: .5;
	pointer-events: none;
}

.site-footer .footer-language-switcher a:hover,
.site-footer .footer-language-switcher a:focus-visible {
	color: var(--brand-blue);
}

.footer-language-switcher .menu-item::after {
	content: none;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	@media screen and (max-width: 450px) {
		flex-direction: column-reverse;
	}
}

.footer-tagline {
	width: auto;
}

/* FOOTER FR */

.site-footer .menu#menu-footer-menu-fr {
	@media screen and (max-width: 1050px) {
		gap: 1rem;
		flex-direction: column;
	}
}

.menu-footer-menu-fr-container .menu-item::after {
	@media screen and (max-width: 1050px) {
		content: none;
	}
}

.menu-footer-menu-container::after {
	@media screen and (max-width: 1200px) {
		content: none;
	}
}

.footer-navigation:has(.menu-footer-menu-fr-container) {
	@media screen and (max-width: 1360px) {
		flex-direction: column;
		gap: 1rem;
	}
}

#menu-footer-menu-fr::after {
	@media screen and (max-width: 1360px) {
		content: none;
	}

}

/* CONTAINER */

.gb-block-container.-container-padding-top {
	padding-top: 10rem;
}

.gb-block-container.-pink {
	background-color: var(--brand-pink);
	background-image: url('assets/img/Disneyland_Schloss.svg');
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: clamp(20rem, 50vw, 90rem);
	padding-block: 5rem;
	margin-bottom: 0;
}

.gb-block-container.-pink::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 100%;
	height: 500rem;
	background: var(--brand-pink);
}

.gb-block-container.-pink.-curved {
	position: relative;
	padding-top: 25rem;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.30));
	background-color: transparent;
}

.gb-block-container.-pink.-curved::before {
	content: none;
}


.gb-block-container.-pink.-curved::after {
	clip-path: url(#topCurveClip);
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-color: var(--brand-pink);
	background-image: url('assets/img/Disneyland_Schloss.svg');
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: clamp(20rem, 50vw, 90rem);
}

.gb-block-container.-pink .gb-container-inside {
	padding-inline: var(--gutter-outter);
}

.gb-block-container.-pink .-disneyland-logo, .-disneyland-logo figure {
	width: 50%;
	max-width: 25rem;

}

.-disneyland-logo {
	margin-block: 5rem;
}


.gb-block-container.-yellow {
	margin-bottom: 0;
	padding-top: 5rem;
	padding-bottom: 15rem;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.30));
	clip-path: inset(0 0 -30px 0);
}

.gb-block-container.-yellow::before {
	clip-path: url(#bottomCurveClip);
	background: var(--brand-yellow);
	content: "";
	position: absolute;
	inset: 0;
	background: var(--brand-yellow);
	@media screen and (max-width: 500px) {
		left: -10rem;
		right: -10rem;
	}
}

.gb-block-container.-yellow.-top {
	clip-path: none;
}

.gb-block-container.-yellow.-top::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 100%;
	height: 500rem;
	background: var(--brand-yellow);

}

.gb-block-container.-yellow figure {
	max-width: 50rem;
	margin-bottom: 0 !important;
}

.gb-block-container.-yellow-pattern {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	background-image: url('assets/pattern/pattern-gelb.png');
}

.gb-block-container.-yellow-pattern:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--brand-yellow);
	opacity: .6;
}

.gb-block-container.-green-pattern {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	background-image: url('assets/pattern/pattern-gruen.png');
}

.gb-block-container.-green-pattern:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--brand-green);
	opacity: .6;
}

.gb-block-container.-negative-m {
	margin-top: var(--negative-m);
}

.-teaser-card {
	max-width: 30rem;
	margin-inline: auto;
}

.gb-block-container.-form-container {
	margin-top: 5rem;
	padding: 5rem;
	border-radius: 30px;
	background: var(--brand-blue-light);
}

/* BUTTONS */

.wp-block-button__link {
	border-radius: 10px;
	background: white;
	color: var(--brand-blue);
	border: 1px solid transparent;
	transition: color .15s, border-color .15s;
	text-transform: uppercase;
	font-size: var(--font-size-base);
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0.8px;
}

.wp-block-button__link:hover, .wp-block-button__link:focus-visible {
	border: 1px solid var(--brand-blue-light);
	color: var(--brand-blue-light);
}

/* FORM */

form label {
	font-family: var(--font-family-form);
	font-weight: 400;
	color: white;
	margin-top: 2rem;
	margin-bottom: .2em;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="week"], input[type="tel"], input[type="time"], input[type="month"], input[type="tel"], textarea, select, .select2-container .select2-selection--single {
	background: var(--brand-blue-form);
	color: white;
	border-radius: 30px;
	border-color: white;
	font-family: var(--font-family-form);
	font-weight: 400;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, textarea:focus, select:focus {
	box-shadow: none;
	border-color: var(--brand-yellow);
	color: white;
}

input[type="date"]:focus-visible, input[type="date"]:visited, input[type="email"]:focus-visible, input[type="email"]:visited, input[type="number"]:focus-visible, input[type="number"]:visited, input[type="password"]:focus-visible, input[type="password"]:visited, input[type="search"]:focus-visible, input[type="search"]:visited, input[type="tel"]:focus-visible, input[type="tel"]:visited, input[type="text"]:focus-visible, input[type="text"]:visited, select:visited, select:focus-visible, textarea:visited, textarea:focus-visible {
	border: 1px solid var(--brand-yellow) !important;
}

.wpcf7-form-control.wpcf7-radio {
	display: flex !important;
	flex-wrap: wrap;
	gap: 1em;
}

.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
	margin: 0;
}

.wpcf7-list-item input[type="radio"] {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	display: flex;
	width: 25px;
	height: 25px;
	justify-content: center;
	align-items: center;
	border: 1px solid white;
	border-radius: 50% !important;
	cursor: pointer;
	padding-left: 0 !important;
}

.wpcf7-list-item input[type="radio"]:checked {
	background-color: var(--brand-blue-form) !important;
	border: 1px solid white !important;
	box-shadow: inset 0 0 0 4px var(--brand-blue-light) !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.wpcf7-list-item input[type="checkbox"] {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	display: flex;
	width: 25px;
	height: 25px;
	justify-content: center;
	align-items: center;
	border: 1px solid white;
	cursor: pointer;
	border-radius: 0 !important;
	padding-left: 0 !important;
	flex-shrink: 0;
}

.wpcf7-list-item input[type="checkbox"]:checked {
	background-color: var(--brand-blue-form) !important;
	border: 1px solid white !important;
	box-shadow: inset 0 0 0 4px var(--brand-blue-light) !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

select {
	color: rgba(255, 255, 255, 0.7);
}

select.has-value {
	color: #fff;
}

label:has(input[type="radio"]) {
	display: flex;
	align-items: center;
	gap: 1rem;
}


.uacf7-row:last-child {
	margin-bottom: 0;
}

.uacf7-col-12 label {
	display: flex;
	gap: 20px;
}

.form-80-20 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.form-80-20 .uacf7-col-6:first-child {
	flex: 1;
}

.form-80-20 .uacf7-col-6:last-child {
	flex: .2;
}

.form-20-80 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.form-20-80 label {
	white-space: nowrap;
}

.form-20-80 .uacf7-col-6:first-child {
	flex: .2;
}

.form-20-80 .uacf7-col-6:last-child {
	flex: 1;
}

.wpcf7-spinner {
	display: none !important;
}

.wpcf7-list-item:first-child {
	margin-left: 0;
}

.wpcf7-not-valid-tip {
	font-family: var(--font-family-form);
	font-weight: 400;
	margin-top: .5rem;
}

button, input[type="button"], input[type="reset"], input[type="submit"], .button, .comment-navigation a, button:active {
	background: white !important;
	color: var(--brand-blue) !important;
	border-radius: 30px;
	text-transform: uppercase;
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, .button:hover, .comment-navigation a:hover, button:active:hover {
	color: var(--brand-blue-light) !important;
}

[data-name="kassenbon"] button {
	font-weight: 400;
	text-transform: none;
	padding-block: .2em;
}

[data-name="kassenbon"] .file-status {
	color: white;
	font-family: var(--font-family-form);
	font-weight: 400;
	margin-left: 10px;
}

[data-name="gratisteilnahme"] label {
	display: flex;
	align-items: center;
	gap: 1rem;
}

input[type="submit"] {
	margin-top: 4rem !important;
}

.form-link {
	color: white;
	text-decoration: underline;
	transition: color .15s;
}

.form-link:hover, .form-link:focus-visible {
	color: var(--brand-yellow);
}

.form-link:focus {
	color: var(--brand-blue-form);
}

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

	.form-20-80 .uacf7-col-6:first-child {
		flex: 1 1 100%;
	}

	.form-80-20 .uacf7-col-6:last-child {
		flex: 1 1 100%;
	}

	.gb-block-container.-form-container {
		padding: 5vw;
	}

}

/* CARD SLIDER */

a.collect-card,
.collect-card {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: transform .25s ease !important;
}
.collect-card:hover {
	transform: translateY(-4px);
}
.collect-card img {
	filter: grayscale(100%) brightness(.8) contrast(1.05);
	transition: filter .5s ease;
	display: block;
}

.collect-card.cc-discovered img {
	filter: grayscale(0%) brightness(1) contrast(1);
}

.collect-card.cc-discovered {
	pointer-events: none;
	cursor: default;
}

.collect-card.cc-lifting {
	visibility: hidden;
}

.cc-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(10, 9, 7, 0);
	backdrop-filter: blur(0px);
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
	transition: opacity .42s ease, backdrop-filter .42s ease, background .42s ease;
}

.cc-backdrop.cc-open {
	background: color-mix(in srgb, transparent, var(--brand-yellow) 50%);
	backdrop-filter: blur(6px);
	opacity: 1;
	pointer-events: auto;
}

.cc-modal-card {
	position: fixed;
	z-index: 1001;
	visibility: hidden;
	transition:
			top .5s cubic-bezier(.22,.86,.28,1),
			left .5s cubic-bezier(.22,.86,.28,1),
			width .5s cubic-bezier(.22,.86,.28,1),
			height .5s cubic-bezier(.22,.86,.28,1),
			border-radius .5s cubic-bezier(.22,.86,.28,1);
}

.cc-modal-card.cc-active {
	visibility: visible;
}

.cc-modal-card .cc-modal-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.cc-modal-card .cc-cap {
	position: absolute;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	bottom: 100%;
	left: 0;
	right: 0;
	padding: 16px 18px 14px;
	font-family: inherit;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .3s ease, transform .3s ease;
}

.cc-modal-card.cc-settled .cc-cap {
	opacity: 1;
	transform: translateY(0);
}

.cc-modal-card.cc-closing .cc-cap {
	opacity: 0;
	transform: translateY(0);
	transition: none;
}

.cc-modal-card .cc-tag {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

@media (max-width: 950px) {
	.nextend-arrow-previous {
		left: 20px !important;
		margin-right: 0 !important;
	}
	.nextend-arrow-next {
		right: 20px !important;
		margin-left: 0 !important;
	}
}

@media (max-width: 950px) {
	.-price-slider .nextend-arrow-previous {
		left: 0 !important;
		margin-right: 0 !important;
	}
	.-price-slider .nextend-arrow-next {
		right: 0 !important;
		margin-left: 0 !important;
	}
}


/* DOWNLOAD CARD */

.-download-cards-wrapper {
	gap: 4rem;
	padding-top: 3rem;
}

.-download-card {
	flex: 0 0 30%;
	min-width: 250px;
}

/* DOWNLOAD BUTTON */
.wp-block-button.-download {
	width: 100%;
}

.wp-block-button.-download .wp-block-button__link {
	background: transparent;
	border: none;
	padding: 0;
	color: var(--brand-blue-light);
	font-family: "cc-whatchamacallit-variable", sans-serif;
	font-variation-settings: "ital" 0, "wdth" 50, "wght" 400;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 1.25px;
	text-transform: none;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wp-block-button.-download .wp-block-button__link:hover, .wp-block-button.-download .wp-block-button__link:focus-visible {
	color: var(--brand-blue);
}

.wp-block-button.-download .wp-block-button__link::after {
	content: "";
	display: inline-block;
	background-color: var(--brand-blue-light);
	-webkit-mask-image: url("assets/logo/download.svg");
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-image: url("assets/logo/download.svg");
	mask-size: contain;
	mask-repeat: no-repeat;
	width: 2rem;
	height: 2rem;
	vertical-align: middle;
	transition: background-color .15s;
}

.wp-block-button.-download .wp-block-button__link:hover::after, .wp-block-button.-download .wp-block-button__link:focus-visible::after {
	background-color: var(--brand-blue);
}

/*404*/
.error-404-header {
	text-align: center;
	padding-top: 10rem;
}

.error-404-content {
	text-align: center;
	font-size: clamp(2rem, 3vw, 3rem);
	color: var(--brand-blue-light);
	font-weight: 900;
}

/* Page ID Styles */

.page-id-53, .page-id-55, .page-id-57, .page-id-161, .page-id-165, .page-id-155, .page-id-163, .page-id-167, .page-id-158, .error404 {
	background: var(--brand-yellow);
}


