/*******************/
/***** GENERAL *****/
/*******************/

@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mada:wght@400;500;600;700;900&display=swap');

@font-face {
	font-family: "HelloHeadline";
	src: url("fonts/fonts-helloheadline.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "ColbyCondensed";
	src: url("fonts/Colby-CdBld.woff2") format("woff2"),
	     url("fonts/Colby-CdBld.woff") format("woff"),
	     url("fonts/Colby-CdBld.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--cw: #fff;
	--c0: #113D68;
	--c1: #8eafcd;
	--c2: #9b9991;
	--c3: #FFC78B;
	--c4: #50B948;
	--c5: #F99D25;
	--c6: #A1E1FF;
	--c7: #DCB16E;
	--c8: #006432;
	--c9: #A2D45E;
	--c10: #166938;
	--f01: "Montserrat";

	/* Babybel "Score Points at Home" re-skin */
	--red-main: #E40613;
	--red-dark: #77160F;
	--red-deeper: #5E0810;
	--black: #111111;
	--f-headline: "HelloHeadline";
	--f-body: "ColbyCondensed", "Mada";
}

html {
	position: relative;
}

body {
	font-family: var(--f01), sans-serif;
  	font-size: 15px;
	padding: 0;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	color: var(--cw);
	/* background: rgb(252, 214, 15);
	background: linear-gradient(
		0deg,
		rgba(252, 214, 15, 1) 0%,
		rgba(255, 245, 195, 1) 100%
	); */

	background-color: var(--red-main);
}

* {
	/* Works on Firefox */
	scrollbar-width: thin;
	scrollbar-color: var(--red-deeper) white;
}

*::-webkit-scrollbar {
	width: 12px;
}

*::-webkit-scrollbar-track {
	background: var(--c0);
}

*::-webkit-scrollbar-thumb {
	background-color: var(--c0);
	border-radius: 10px;
	border: 3px solid white;
}

*:focus {
	outline: none !important;
	box-shadow: none;
}

.language__switcher {
	position: fixed;
    left: 1em;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    aspect-ratio: 1;
	z-index: 9999;
}

.language__switcher a {
	background: var(--red-deeper);
    color: var(--cw);
    z-index: 100;
    position: relative;
    text-decoration: none;
    font-family: var(--f01), sans-serif;
    letter-spacing: 0.5px;
    line-height: 24px;
    border-radius: 100%;
    text-align: center !important;
    margin: 0 auto !important;
    flex-direction: column;
    padding: 10px;
    width: 20px;
    height: 20px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language__switcher a.active {
	display: none;
}

a {
	text-decoration: none;
}

section {
	padding: 2em;
}

.container {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}

p {
	font-family: var(--f01), sans-serif;
	font-weight: bold;
}

#error-message {
	color: red;
}

.logo-text {
	max-width: 300px;
}

.btn-continue, 
.btn-return,
.btn-register {
	font-family: var(--f01), sans-serif;
	text-transform: uppercase;
	font-size: 28px;
	color: white;
	width: 100%;
	margin: 1em auto 0 auto;
	cursor: pointer;
	display: block;
	max-width: fit-content;
	line-height: 100%;
	z-index: 1;
	position: relative;
	top: 0;
	font-weight: 600;
	padding: 20px 40px;
	border-radius: 50px;
	border: 0;
	background-color: var(--c4);
	text-transform: none;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn-continue:hover, 
.btn-return:hover,
.btn-register:hover {
	color: #a8e8a3;
}

.prize-image {

	padding: 0 2em;

	.inner {
		max-width: 550px;
		padding: 3em 4em;
		background-color: var(--c9);
		border-radius: 30px;
	}

	img {
		margin-top: -140px;
		margin-bottom: -30px;
	}
}

.product-image {
	display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    /* bottom: 10%; */
    left: auto;
    right: auto;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
	position: relative;
    margin-top: 4em;
    bottom: 0;
}

.product-image img {
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

.registration .product-image,
.rules .product-image {
	position: relative;
	bottom: 0;
}

.rules .product-image {
	margin-top: 15em;
}

.rules {
	background: transparent;
}

.content {
	text-align: center;
    z-index: 1;
    flex: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content .backgrounds {
	position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.content .backgrounds img {
	position: absolute;
}

.content .container {
	position: relative;
	border-radius: 30px 30px 0 0;
	margin-top: 4em;
	margin-bottom: 4em;
}

.content .container .logo-container {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	position: relative;
	z-index: 10;
}

.content .container .logo {
    margin: 0 auto;
	max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.content .container .logo-text {
	position: relative;
}

.content .container .logo-tag {
	max-width: 240px;
    width: 100%;
    object-fit: contain;
    height: auto;
    position: absolute;
    top: -120px;
    right: -80px;
}

.content .container .title {
	max-width: 582px;
	width: 100%;
	height: auto;
	object-fit: contain;
	padding: 0 1em;
	box-sizing: border-box;
}

.characters {
	bottom: 40px;
	position: absolute;
	left: -70px;
}

.content .inner {
	max-width: 650px;
	/* width: 100%; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .inner-wide {
	max-width: 750px;
}

.content .divide {
	margin: 2em auto;
	filter: brightness(100) saturate(100%);
}

.content .heading {
	font-family: var(--f01);
    letter-spacing: 0.5px;
    font-size: 22px;
    margin: 0 auto 2em;
    color: var(--cw);
    line-height: 140%;
	font-weight: normal;
}

.content .heading span {
	font-size: 36px;
	display: block;
	font-weight: bold;
}

.content .subheading {
	font-size: 30px;
}

.content p:first-of-type {
	margin-top: 0;
}

/*************/
/**** AGE ****/
/*************/

body.age .content .container {
	background: transparent;
}

body.age .content .container .title {
	max-width: 582px;
}

body.age .content .container .logo-container {
	margin-bottom: 1.5em;
}

#age  {
    margin-top: 2em;
    position: relative;
    z-index: 2;
}

#age #ageForm {
	width: 100%;
    margin: 0;
}

#age .inner {
	max-width: 550px;
    padding: 3em 3.5em;
    background-color: var(--red-dark);
    border-radius: 12px;
}

#age .inner .subheading {
	color: var(--cw);
	font-family: var(--f-headline), sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 36px;
	line-height: 115%;
	margin: 0 auto 0.75em;
	font-weight: normal;
}

#age .fields  {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 0.75em;
}

#age .arrow {
    position: relative;
    width: 100%;
    height: auto;
}

#age .arrow:after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red-dark);
    font-size: 18px;
    font-weight: 900;
    pointer-events: none;
}

#age select {
    font-size: 14px;
    font-weight: 700;
    color: var(--red-dark);
    width: 100%;
    background: white;
    padding: 0.9em 1em;
    appearance: none;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-transform: none;
}

#age select option {
	color: var(--red-dark);
}

#age .btn-continue {
	background-color: var(--cw);
	color: var(--red-main);
	font-family: var(--f-body), sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	padding: 16px 48px;
	border-radius: 999px;
	margin-top: 1.5em;
	box-shadow: 0 2px 0 rgba(0,0,0,0.05);
}

#age .btn-continue:hover {
	color: var(--red-dark);
	transform: translateY(-2px);
}

#age #error-message {
	margin-top: 1em;
	color: var(--cw);
	font-size: 14px;
}

/****************************/
/**** SHARED DECORATIONS ****/
/****************************/

.bg-decor {
	position: fixed;
	z-index: 1;
	pointer-events: none;
	user-select: none;
}

.bg-decor--character {
	left: -40px;
	top: 50%;
	transform: translateY(-30%) rotate(-8deg);
	width: 26vw;
	max-width: 380px;
	min-width: 220px;
	height: auto;
}

.bg-decor--ball {
	top: 8vh;
	right: 3vw;
	width: 16vw;
	max-width: 240px;
	min-width: 140px;
	height: auto;
	transform: rotate(12deg);
}

.bg-decor--peek {
	top: 6vh;
	right: 4vw;
	width: 14vw;
	max-width: 200px;
	min-width: 120px;
	height: auto;
	transform: rotate(-10deg);
}

/* When peek is present, push the ball to the bottom-right */
.bg-decor--ball.is-bottom {
	top: auto;
	bottom: 6vh;
	right: 3vw;
}

/* Default page decoration overrides — bigger and tuned to hero composition */
body.default .bg-decor--character {
	left: -30px;
	top: 38%;
	transform: translateY(-30%) rotate(-8deg);
	width: 24vw;
	max-width: 360px;
	min-width: 240px;
}

body.default .bg-decor--ball {
	top: 42%;
	right: 6vw;
	transform: translateY(-50%) rotate(8deg);
	width: 14vw;
	max-width: 220px;
	min-width: 150px;
}

body.default .bg-decor--peek {
	top: 5vh;
	right: 4vw;
	width: 11vw;
	max-width: 170px;
	min-width: 110px;
	transform: rotate(-8deg);
}

@media only screen and (max-width: 960px) {
	.bg-decor--character {
		left: -40px;
		top: auto;
		bottom: 4vh;
		transform: rotate(-8deg);
		width: 32vw;
		min-width: 0;
		opacity: 0.85;
	}

	.bg-decor--ball,
	.bg-decor--ball.is-bottom {
		top: 3vh;
		bottom: auto;
		right: -20px;
		width: 26vw;
		min-width: 0;
		opacity: 0.85;
	}

	.bg-decor--peek {
		top: 2vh;
		right: -20px;
		width: 22vw;
		min-width: 0;
		opacity: 0.85;
	}
}

@media only screen and (max-width: 600px) {
	.bg-decor--character,
	.bg-decor--ball,
	.bg-decor--peek {
		display: none;
	}
}

/* Back-compat: old class names still used by age template */
.age-decor { position: fixed; z-index: 1; pointer-events: none; user-select: none; }
.age-decor--character {
	left: -40px;
	top: 50%;
	transform: translateY(-30%) rotate(-8deg);
	width: 26vw;
	max-width: 380px;
	min-width: 220px;
	height: auto;
	bottom: auto;
}
.age-decor--ball {
	top: 8vh;
	right: 3vw;
	width: 16vw;
	max-width: 240px;
	min-width: 140px;
	height: auto;
	transform: rotate(12deg);
}

@media only screen and (max-width: 960px) {
	.age-decor--character {
		left: -40px;
		top: auto;
		bottom: 4vh;
		transform: rotate(-8deg);
		width: 32vw;
		min-width: 0;
		opacity: 0.85;
	}
	.age-decor--ball {
		top: 3vh;
		right: -20px;
		width: 26vw;
		min-width: 0;
		opacity: 0.85;
	}
}

@media only screen and (max-width: 600px) {
	.age-decor--character,
	.age-decor--ball {
		display: none;
	}
}

/****************************************************/
/**** FORBIDDEN, PRELAUNCH, POSTLAUNCH, THANKYOU ****/
/****************************************************/

#forbidden,
#prelaunch,
#postlaunch,
#thankyou {
	padding: 2em;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
}

#forbidden > .inner,
#prelaunch > .inner,
#postlaunch > .inner,
#thankyou > .inner  {
	max-width: 620px;
    padding: 2.5em 3em;
    background-color: var(--red-dark);
	border-radius: 12px;
	text-align: center;
}

#forbidden .heading,
#prelaunch .heading,
#postlaunch .heading,
#thankyou .heading {
	font-size: 35px;
	line-height: 115%;
	font-weight: normal;
	font-family: var(--f-headline), sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 auto 0.5em auto;
	color: var(--cw);
}

#forbidden .heading span,
#prelaunch .heading span,
#postlaunch .heading span,
#thankyou .heading span {
	color: var(--cw);
}

#forbidden .subheading,
#prelaunch .subheading,
#postlaunch .subheading,
#thankyou .subheading {
	color: var(--cw);
	font-family: var(--f-body), sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 23px;
	line-height: 118%;
	margin: 0;
	display: block;
}

#forbidden .btn-return {
	background-color: var(--cw);
	color: var(--red-main);
	font-family: var(--f-body), sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	padding: 16px 40px;
	border-radius: 999px;
	margin-top: 1.5em;
}

#forbidden .btn-return:hover {
	color: var(--red-dark);
}

#prelaunch,
#postlaunch,
#registration,
#age,
#thankyou,
#forbidden {
	display: flex;
	justify-content: center;
	z-index: 2;
}

/* Thank-you product overlay */
#thankyou {
	flex-direction: column;
	align-items: center;
	position: relative;
}

body.thankyou .content .container {
	margin-bottom: 2em;
}

body.thankyou footer {
	margin-top: 0;
}

.thankyou-pack {
	width: 360px;
	max-width: 60vw;
	height: auto;
	display: block;
	margin: 0 auto -80px;
	position: relative;
	z-index: 3;
	transform: translateX(58px);
}

#thankyou > .inner {
	padding-top: 5em;
	position: relative;
	z-index: 2;
}

/* Registration product overlay */
#registration {
	flex-direction: column;
	align-items: center;
}

.registration-pack {
	width: 329px;
	max-width: 55vw;
	height: auto;
	display: block;
	margin: 0 auto -70px;
	position: relative;
	z-index: 3;
	transform: translateX(55px);
}

#registration > .inner {
	padding-top: 4.5em;
}

.thankyou .prize-image .inner {
	max-width: 550px !important;
}

.thankyou .image-container {
	display: flex;
    justify-content: center;
}


/*********************/
/****** DEFAULT ******/
/*********************/

/* Hide legacy GoGo logo */
.default .content .container .logo-container .logo {
	display: none;
}

.default .content .container {
	margin-top: 6em;
}

.default .content .container .title {
	max-width: 550px;
}

.default .content .container .logo-text {
    margin-top: 0;
	max-width: 550px;
}

#default {
	position: relative;
	z-index: 2;
	padding-top: 1em;
}

#default .inner {
	max-width: 960px;
	position: relative;
	background: transparent;
	padding: 0;
}

#default .inner p,
#default .inner #img-1,
#default .inner #img-2,
#default .inner .logo-tag {
	display: none;
}

#default .inner .btn-register {
	margin: 0 auto;
    display: block;
	background-color: var(--cw);
	color: var(--red-main);
	font-family: var(--f-body), sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	padding: 16px 48px;
	border-radius: 999px;
}

#default .inner .btn-register:hover {
	color: var(--red-dark);
	transform: translateY(-2px);
}

/* Default page prize strip (body-level sibling, full-width) */
.prize-strip {
	margin: 0;
	background-color: var(--red-dark);
	padding: 1.5em 2em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5em;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
	width: 100%;
	box-sizing: border-box;
}

/* Default page body color matches strip so any flash is dark red, not bright red */
body.default {
	background-color: var(--red-dark);
}

/* .content flex-grows to fill space above prize-strip so strip sits flush above footer */
body.default .content {
	flex: 1 0 auto;
	display: flex;
	align-items: center;
}

body.default .content .container {
	margin-bottom: 3em;
}

.prize-strip__pack {
	width: 340px;
	max-width: 30vw;
	height: auto;
	flex-shrink: 0;
	margin-top: -170px;
	margin-bottom: -20px;
	align-self: flex-end;
	position: relative;
	z-index: 3;
}

.prize-strip__copy {
	max-width: 700px;
	color: var(--cw);
	font-family: var(--f-headline), sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 38px;
	font-weight: normal;
	line-height: 1.05;
	text-align: left;
	margin: 0;
}

@media only screen and (max-width: 960px) {
	.prize-strip__copy {
		font-size: 30px;
	}

	.prize-strip__pack {
		margin-top: -100px;
		margin-bottom: -10px;
		transform: translate(10%, 0);
	}
}

@media only screen and (max-width: 700px) {
	.prize-strip {
		flex-direction: column;
		text-align: center;
		padding-top: 0;
	}

	.prize-strip__copy {
		text-align: center;
		font-size: 24px;
	}

	.prize-strip__pack {
		max-width: 50vw;
		margin-top: -60px;
		margin-bottom: 0;
		align-self: center;
	}
}

#default .grid {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	display: grid;
	margin-top: 3em;
	gap: 5em 3em;
}

#default .item {
	background: white;
	border-radius: 15px;
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	position: relative;
}

#default .item .icon {
	position: relative;
	z-index: 1;
	max-width: 275px;
	width: 100%;
	max-height: 250px;
	height: 100%;
	object-fit: contain;
	top: -30px;
}

#default .item:nth-child(3) .icon {
	top: 0;
	max-height: 220px;
}

#default .item .lines {
	position: absolute;
	top: -1em;
	right: -1em;
}

#default .item .heading {
	font-size: 36px;
	color: #e12726;
	transform: rotate(-5deg);
	margin-top: 0.5em;
	position: absolute;
	bottom: -25px;
}

#default .heading {
	font-size: 45px;
	color: var(--c1);
	text-transform: uppercase;
	line-height: 110%;
}

#default .heading span {
	font-size: 90px;
	line-height: 90%;
	display: block;
	color: white;
	font-weight: 100;
}

/********************/
/*** REGISTRATION ***/
/********************/

.registration .logo-tag {
	display: none !important;
}

#registration {
	z-index: 2;
    position: relative;
}

#registration #registration-form {
	margin-top: 0.5em;
}

#registration .inner {
	max-width: 560px;
	width: 100%;
    padding: 5em 2.5em 2em;
    background-color: var(--red-dark);
    border-radius: 12px;
    box-sizing: border-box;
}

#registration .inner .heading {
	font-size: 34px;
	margin: 0 auto 0.5em;
	color: var(--cw);
	font-family: var(--f-headline), sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: normal;
	line-height: normal;
}

#registration .inner .heading span {
	font-weight: normal;
}

#registration .inner .heading strong {
	font-weight: normal;
}

#registration .inner .subheading {
	font-family: var(--f-body), sans-serif;
	font-size: 25px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	line-height: 115%;
	color: var(--cw);
	margin: 0 auto 1.5em;
}

.subheading {
	color: var(--c9);
}

#registration .fields {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	margin-bottom: 1.5em;
	gap: 0;
}

#registration label {
	text-align: left;
    margin: 0.5em 0 0.3em 0;
    color: var(--cw);
    font-family: var(--f-body), sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
    display: block;
    width: 100%;
}

#registration input,
#registration textarea,
#registration select {
	font-family: var(--f-body), sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #77160F;
    text-align: left;
    box-shadow: none;
    padding: 0.85em 1em;
    width: 100%;
	border: 0;
	margin-bottom: 0.5em;
	background-color: var(--cw);
}

#registration input::placeholder,
#registration textarea::placeholder,
#registration select::placeholder {
	font-family: var(--f-body), sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: rgba(21, 17, 14, 0.5);
	font-style: normal;
	text-transform: none;
}

#registration select {
	width: 100%;
	appearance: none;
}

#registration .checkbox {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
}

#registration .checkbox:last-of-type {
	margin-bottom: 0;
}

#registration .checkbox input {
	display: none;
	visibility: none;
}

#registration .checkbox label {
	display: flex;
	align-items: center;
	position: relative;
	text-align: left;
	font-weight: normal;
	cursor: pointer;
	color: white;
	font-size: 12px;
	line-height: normal;
}

#registration .checkbox label a {
	color: white;
	font-size: 12px;
	line-height: normal;
}

#registration .checkbox label:before {
	content: "";
	background-color: white;
	width: 22px;
	height: 22px;
	aspect-ratio: 1;
	display: inline-block;
	margin-right: 1em;
	cursor: pointer;
}

#registration .checkbox label:after {
	content: "";
	font-family: "Font Awesome 6 Pro";
	color: var(--c0);
	font-size: 20px;
	position: relative;
	font-weight: bold;
	cursor: pointer;
}

#registration .checkbox input:checked + label:after {
	content: "\f00c";
	left: 3px;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	bottom: 0;
}


#registration .upc-code {
	margin-top: 1.5em;
	width: 100%;
	padding: 1.5em;
	max-width: 100%;
	display: block;
	box-sizing: border-box;
	box-shadow: inset 0 0 0 1px var(--red-main);
	border-radius: 6px;
}

#registration .upc-code .heading {
	font-size: 25px;
	font-weight: normal;
	font-family: var(--f-headline), sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--cw);
	margin: 0 auto 0.6em;
	line-height: 115%;
}

#registration .upc-code .subheading {
	font-size: 16px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 1em;
	color: var(--cw);
	font-family: var(--f-body), sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	text-align: center;
	line-height: 118%;
}

#registration .upc-code input {
	background-color: white;
	border: 0;
	box-shadow: none;
	color: var(--red-deeper);
}

#registration button[type="submit"] {
	font-family: var(--f-body), sans-serif;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 20px;
	color: white;
	border: 0;
	width: 100%;
	margin-top: 1.5em;
	border-radius: 999px;
	cursor: pointer;
	position: relative;
	font-weight: 700;
	line-height: 1;
	padding: 16px 24px;
	background-color: var(--red-main);

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#registration button[type="submit"]:hover {
	transform: translate(0, -2px);
	background-color: #B5000F;
}

#registration .disclaimer {
	margin-top: 2em;
}

#registration .disclaimer p {
	text-align: left;
	font-size: 12px;
	font-weight: normal;
}

#registration .error-message {
	margin-top: 1em;
	font-style: italic;
}

#registration .characters-animate {
	bottom: 0;
	position: absolute;
	left: -50px;
}

#registration .characters-animate .base {
	z-index: 3;
	position: relative;
}

#registration .characters-animate .eye {
	position: absolute;
	left: 74px;
	z-index: 4;
	top: 241px;
}

#registration .characters-animate .frame {
	position: absolute;
	left: 50%;
	top: 215px;
	z-index: 5;
	transform: translate(-48px, 0);
}

.spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-left: 10px;
	border: 3px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	border-top-color: #fff;
	animation: spin 1s ease-in-out infinite;
	vertical-align: middle;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.btn-loading {
	opacity: 0.7;
	cursor: not-allowed;
}

.btn .spinner {
	display: none;
}

.btn-loading .spinner {
	display: inline-block !important;
}

/*************/
/*** RULES ***/
/*************/

#rules {
	max-width: 720px;
    margin: 0em auto;
	background: var(--red-dark);
	margin-bottom: 2em;
	margin-top: 2em;
	border-radius: 12px;
	padding: 2.5em 2em !important;
	position: relative;
	z-index: 2;
}

#rules	* {
	color: var(--cw) !important;
	font-family: var(--f01), sans-serif !important;
	font-weight: 500 !important;
	line-height: 140% !important;
	text-align: left !important;
}

#rules .title {
	font-size: 22px !important;
	text-align: center !important;
	margin: 0 auto;
	font-weight: normal !important;
	font-family: var(--f-headline), sans-serif !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: normal !important;
	padding: 16px;
	margin-bottom: 1.5em;
	background: var(--red-deeper);
	border-radius: 8px;

	* {
		font-size: inherit !important;
		text-align: inherit !important;
		margin: inherit !important;
		font-weight: inherit !important;
		font-family: inherit !important;
		line-height: inherit !important;
	}
}


#rules .title span{
	color: var(--cw) !important;
}

#rules .inner {
	width: 100%;
	display: block;
}

#rules h1 {
	text-align: center !important;
	font-weight: bold !important;
	text-transform: uppercase;
}

#rules h2 {
	font-size: 18px !important;
	text-transform: uppercase !important;
	font-weight: bold !important;
}

#rules h3 {
	font-size: 14px !important;
	text-transform: uppercase !important;
	font-weight: bold !important;
}       

#rules p, ul, li {
	font-size: 12px !important;
}

#rules strong {
	font-weight: bold !important;
}

#rules .product-section {
	margin-bottom: 40px;
}

#rules .product-section h2 {
	font-size: 24px;
	margin-bottom: 20px;
}

#rules .product-section table {
	width: 100%;
	border-collapse: collapse;
	/* background: #0898d7; */
	border-radius: 10px;
	overflow: hidden;
}

#rules .product-section th {
	background: var(--red-deeper);
	padding: 15px;
	text-align: left;
	font-weight: bold !important;
}

#rules .product-section td {
	padding: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.04);
}

/* #rules .c35 {
	background-color: var(--cw);
} */

#rules .c35 tr:last-of-type {
	margin-bottom: 10px;
	display: block;
}


/**************/
/*** FOOTER ***/
/**************/

footer {
	text-align: center;
	position: relative;
	margin-top: auto;
	background: var(--black);
	z-index: 2;
}

footer nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
	padding: 0.9em 1em;
}

footer nav a {
	font-family: var(--f01), sans-serif;
	letter-spacing: 0.3px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: var(--cw);
	padding: 0em 2em;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

footer nav a:hover {
	opacity: 0.75;
}

footer .copyright {
	position: absolute;
    right: 2em;
    bottom: 2em;
}

/********************/
/**** RESPONSIVE ****/
/********************/
@media only screen and (max-width: 1200px) {

	.rules .product-image {
		margin-top: 5em;
	}
}
@media only screen and (max-width: 960px) {
	#forbidden .inner,
	#age .inner {
		padding: 30px;
	}

	#forbidden .heading,
	#prelaunch .heading,
	#postlaunch .heading,
	#thankyou .heading {
		font-size: 24px;
	}
}

@media only screen and (max-width: 800px) {
	.content .backgrounds {
		opacity: 0.2;
	}
}

@media only screen and (max-width: 700px) {
	.product-image img {
		max-width: 70vw;
	}
}


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

	.content .container .title {
		padding: 0 1.5em;
	}

	.content .container .logo {
		max-width: 150px;
	}

	.content .container .logo-tag {
		max-width: 150px;
		top: -60px;
		right: 0px;
	}

	.default .content .container .logo-text {
		margin-top: 1.5em;
	}

	.content .container .title {
		max-width: 270px;
	}

	#default .inner {
		margin-top: 2em;
	}

	#default .inner .desktop {
		display: none !important;
	}

	#default .inner .mobile {
		display: block !important;
        font-size: 18px;
        font-weight: 500;
        line-height: 140%;
        padding: 2em;
	}

	#default .inner .btn-register {
		margin-top: 0 !important;
	}

	.rules .product-image {
		margin-top: 0;
	}

	#age .fields {
		gap: 0.5em;
	}

	#age select {
    	padding: 0.5em 1em;
	}

	#age .arrow:after {
    	top: 15px;
		right: 10px;
	}

	#prelaunch > .inner,
	#postlaunch > .inner,
	#thankyou > .inner,
	#registration > .inner  {
		padding: 70px 30px 30px 30px;
		margin: 0 2em;
		max-width: 90%;
	}

	#forbidden .heading,
	#prelaunch .heading,
	#postlaunch .heading,
	#thankyou .heading {
		font-size: 28px;
		line-height: normal;
	}

	#registration .inner .desktop {
		display: none !important;
	}

	#registration .inner .mobile {
		display: block !important;
		font-size: 18px;
        margin-top: 2em;
	}

	#registration input,
	#registration textarea,
	#registration select {
		padding: 0.5em 1em;
	}

	#registration .characters-animate .eye {
		left: 47%;
	}

	#registration button[type="submit"] {
		font-size: 20px;
		padding: 10px 20px;
	}

	.content .container:before {
		-webkit-clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
	}

	.characters {
		left: 0;
	}

	#default .inner .title {
		display: none;
	}

	#default .inner .mobile-title {
		display: block !important;
	}

	#default .item {
		height: 190px;
	}

	#default .item .icon {
		max-height: 190px;
	}

	#default .item:nth-child(3) .icon {
		max-height: 160px;
	}

	#default .heading {
		font-size: 30px;
	}

	#default .heading span {
		font-size: 70px;
	}

	#registration input,
	#registration textarea {
		font-size: 16px;
	}

	#recipes .grid {
		display: block;
	}

	#recipes .grid a {
		margin-bottom: 1em;
		display: block;
	}

	#recipes .grid a img {
		max-height: 250px;
		height: 100%;
		object-fit: cover;
	}

	#postlaunch .characters-animate .frame {
		left: 48%;
	}

	/* footer {
		margin-top: 0;
	} */

	footer nav {
		flex-direction: column;
	}

	footer nav a {
		opacity: 1;
		font-size: 12px;
	}
}

@media only screen and (max-width: 450px) {
	.language__switcher {
		left: 5px;
		top: 5px;
	}

	#age .fields {
		grid-template-columns: 1fr;
		gap: 1em;
	}

	#registration button[type="submit"] {
		font-size: 16px;
	}

	#default .inner .mobile-title {
		max-width: 250px;
		width: 100%;
	}

}