@font-face { font-family: "Montserrat"; src: url("../fonts/subset-Montserrat-MediumItalic.woff2") format("woff2"), url("../fonts/subset-Montserrat-MediumItalic.woff") format("woff"), url("../fonts/subset-Montserrat-MediumItalic.ttf") format("truetype"); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../fonts/subset-Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/subset-Montserrat-SemiBold.woff") format("woff"), url("../fonts/subset-Montserrat-SemiBold.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../fonts/subset-Montserrat-Bold.woff2") format("woff2"), url("../fonts/subset-Montserrat-Bold.woff") format("woff"), url("../fonts/subset-Montserrat-Bold.ttf") format("truetype"); font-weight: bold; font-style: normal; font-display: swap; }


:root {
	--white: #FFF;
	--white-over: #DDD;
	--black: #000;
	--black-over: #222;
	--grey: #5e5e5e;
	--grey-over: #f4f4f4;
	--marron: #53230c;
	--celeste: #92bde6;
	--celeste-over: #D3E5F5;

	--disabled: #999;
}

html, body {
	height: 100%;

	font-size: 24px;
	line-height: 28px;
}

body {
	margin: 0 auto;

	font-family: "Montserrat";
	font-weight: bold;
	font-style: normal;
	font-display: swap;

	color: var(--marron);
	background-color: var(--white);

	display: flex;
	flex-direction: column;

	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}



html {
	text-align: center;
}

a {
	color: var(--marron);
}

a:hover {
	color: var(--marron);
}

a.nostransform {
	color: inherit;
	text-decoration: none;
}

a.nostransform:hover {
	text-decoration: underline;
}

button {
	background-color: var(--celeste);

	border: none;
	border-radius: 1.5rem;

	display: inline-block;

	font-family: "Montserrat";
	font-weight: bold;
	font-style: normal;
	font-display: swap;

	font-size: 1rem;

	text-transform: uppercase;

	color: var(--white);

	padding: 1rem 3rem 1rem 3rem;

	min-width: 14rem;
	max-width: 90%;

	position: relative;
}

button span {
	display: inline-block;
}

button:hover {
	background-color: var(--celeste);
	cursor: pointer;
}

button:disabled {
	color: var(--grey);
	cursor: default;
}

button.loading {
	color: transparent !important;
}

button.loading::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 4px solid transparent;
	border-top-color: var(--white);
	border-radius: 50%;
	animation: loading 1s ease infinite;
}

input[type=text], input[type=email] {
	width: calc(100% - 2rem);
	background-color: transparent;
	color: var(--marron);

	font-family: "Montserrat";
	font-weight: 500;
	font-style: italic;
	font-size: 1rem;

	text-align: center;

	border: 0.2rem solid var(--marron);
	border-radius: 1rem;

	padding: 0.75rem 1rem;

	outline: none;
}

input[type=text]::placeholder, input[type=email]::placeholder {
	color: var(--marron);

	font-family: "Montserrat";
	font-weight: 500;
	font-style: italic;
	font-size: 1rem;

	text-transform: uppercase;

	opacity: 1;
}

textarea {
	width: calc(100% - 20px);
	border: none;
	border-radius: 20px;

	padding: 10px;

	font-size: 1rem;
}

.nacimiento-container {
	display: flex;
	align-items: center;
	overflow-x: hidden;
	white-space: nowrap;
}

input[type=checkbox] + label {
	display: flex;
	margin: 0;
	cursor: pointer;
	padding-bottom: 10px;

	color: var(--back);
	min-height: 32px;
	line-height: 16px;
	align-items: center;
	justify-content: center;

	font-size: 0.75rem;

	text-transform: uppercase;
	font-weight: 500;
	font-style: italic;
}

input[type=checkbox] {
	display: none;
}

input[type=checkbox] + label:before {
	content: "X";
	border: 0.1rem solid var(--marron);

	border-radius: 0.25rem;

	width: 1rem;
	height: 1rem;
	font-size: 1rem;

	margin-left: 10px;
	margin-right: 10px;

	vertical-align: bottom;
	color: transparent;
	transition: .2s;

	display: flex;
	align-items: center;
	justify-content: center;
}

input[type=checkbox] + label:active:before {
	transform: scale(0);
}

input[type=checkbox]:checked + label:before {
	background-color: var(--marron);
	border-color: var(--marron);
	color: var(--white);
}

input[type=checkbox]:disabled + label:before {
	transform: scale(1);
	border-color: var(--disabled);
}

input[type=checkbox]:checked:disabled + label:before {
	transform: scale(1);
	background-color: var(--disabled);
	border-color: var(--disabled);

	border-radius: 0.25rem;
}

select {
	width: 100%;

	border: none;
	border-radius: 1rem;

	background-color: var(--grey-over);
	color: var(--black);
	font-family: "Montserrat";
	font-weight: 500;
	font-style: italic;
	font-size: 1rem;

	cursor: pointer;
	height: 3rem;
	min-width: 5rem;

	text-indent: 0.5rem;
}

select:disabled {
	cursor: default;
	opacity: 0.2;
}

select option {
	background-color: var(--grey-over);
	color: var(--black);
}

select option:disabled {
	display: none;
}

h1 {
	font-family: "Montserrat";
	font-weight: bold;
	font-style: normal;
	font-size: 2.5rem;

	line-height: 2.75rem;
	letter-spacing: -0.1rem;

	text-transform: uppercase;

	margin: 0;
}

h2 {
	font-family: "Montserrat";
	font-weight: bold;
	font-style: normal;
	font-size: 1.5rem;

	line-height: 1.75rem;

	text-transform: uppercase;

	margin: 0;
}

h3 {
	font-family: "Montserrat";
	font-weight: bold;
	font-style: normal;
	font-size: 1rem;

	text-transform: uppercase;

	margin: 0;
}

hr {
	border: 0.1rem solid var(--grey-over);
}

#header {
	width: 100%;
	height: 25vh;

	padding-top: 2vh;
	padding-bottom: 1vh;
	position: relative;

	flex-direction: column;
	flex-basis: 35%;
}

#header .logo {
	width: 100%;
	text-align: center;
	max-width: 30vw;
}

#header .logo img {
	width: 100%;
}

#header.full {
	flex-basis: auto;
}

body.full #page-container {
	flex-flow: row;
}

#header.small {
	height: 14vh;
}

#page-container {
	display: flex;
	flex-flow: row;
	height: 100vh;
	width: 90%;
	overflow-y: scroll;
	overflow-x: hidden;

	padding: 0 5%;

	align-items: center;
}

#page-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	max-width: 300px;
	height: 100%;
	background: url("../assets/bg_tl.svg") no-repeat top left;
	background-size: auto;
	background-size: 100%;
}

#page-container::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 16%;
	max-width: 150px;
	height: 100%;
	background: url("../assets/bg_br.svg") no-repeat bottom right;
	background-size: auto;
	background-size: 100%;
}

#page-background {
	height: 40vh;
	position: absolute;
	bottom: 0;
	width: 100%;

	display: none;
	opacity: 0;
}

#content-wrap {
	flex: 1 0 auto;
	z-index: 1;
	height: 100%;
}

#content-wrap:empty {
	display: none;
}

#footer {
	width: 100%;
	height: 2.5rem;
	color: var(--white);
	text-transform: uppercase;
	overflow: hidden;

	flex-shrink: 0;
	margin-top: 20px;

	font-size: 0.8em;

	padding-top: 5px;
	padding-bottom: 5px;
}

#footer div.wrap {
	max-width: 80%;
	margin: 0 auto;
	height: 100%;
}

#footer img {
	max-height: 2.5rem;
}

#footer .line {
	width: 100%;
	height: 2px;
	display: flex;
	position: absolute;
}

#footer .line div {
	margin-left: 40px;
	margin-right: 40px;
	background-color: var(--white);
	display: flex;
	flex-direction: column;
	flex: 1;
}

#termsdetails {
	max-width: 600px;
	color: var(--black);
	display: none;
}

#termsdetails a {
	color: var(--black);
}

#termsdetails a:hover {
	color: var(--black-over);
}

#termsdetails div {
	font-size: 0.75rem;
}

#messages {
	display: none;
	z-index: 25;
	color: var(--marron);
	text-align: center;
	background-color: var(--white);
}

#messages h3 {
	padding-bottom: 1rem !important;
	margin-top: 0 !important;
}

div.loading::after {
	content: "";
	position: absolute;
	width: 64px;
	height: 64px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 4px solid transparent;
	border-top-color: var(--white);
	border-radius: 50%;
	animation: loading 1s ease infinite;
}

.flex {
	display: flex;
}

.flex-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

.flex-col {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}

.flex-col-wider {
	flex: 1.5;
}

.flex-col-nc {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.flex-center-nh {
	display: flex;
	align-items: center;
}

.flex-dir-unset {
	flex-direction: unset !important;
}


.h100pct {
	height: 100%;
}

.w50pct {
	width: 50% !important;
}

.w100pct {
	width: 100% !important;
}

.w2rem {
	width: 2rem !important;
}

.mauto {
	margin: 0 auto;
}

.inline {
	display: inline;
}

.inlineblock {
	display: inline-block;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

.middle {
	justify-content: center;
}

.center-flex {
	align-items: center;
}

.bolded {
	font-weight: bold;
}

.italic {
	font-weight: normal;
	font-style: italic;
}

.italic-medium {
	font-weight: 500;
	font-style: italic;
}

.uppercase {
	text-transform: uppercase;
}

.notransform {
	text-transform: none !important;
}

.formbreak {
	display: inline;
}

.black {
	color: var(--black);
}

.white {
	color: var(--white);
}

.column {
	float: left;
	width: 30%;
}

.column-min {
	float: left;
	width: 4%;
}

.ovhidden {
	overflow: hidden;
}

.radius40 {
	border-radius: 40px;
}

.paded {
	padding-left: 5px !important;
	padding-right: 5px !important;
}

.martop0 {
	margin-top: 0 !important;
}

.pad0 {
	padding: 0 !important;
}

.padleft5 {
	padding-left: 5px;
}

.padleft10 {
	padding-left: 10px;
}

.padright5 {
	padding-right: 5px;
}

.padright10 {
	padding-right: 10px;
}

.padbot5 {
	padding-bottom: 5px;
}

.padtop5 {
	padding-top: 5px;
}

.padtop10 {
	padding-top: 10px;
}

.padtop20 {
	padding-top: 20px;
}

.padtop30 {
	padding-top: 30px;
}

.padtop40 {
	padding-top: 40px;
}

.padtop15p {
	padding-top: 15%;
}

.padtop1v {
	padding-top: 1vh;
}

.padtop2v {
	padding-top: 2vh;
}

.padtop4v {
	padding-top: 4vh;
}

.padtop1r {
	padding-top: 1rem;
}

.padtop2r {
	padding-top: 2rem;
}

.padtop3r {
	padding-top: 3rem;
}

.padtop5r {
	padding-top: 5rem;
}

.padbot1v {
	padding-bottom: 1vh;
}

.padbot3r {
	padding-bottom: 3rem;
}

.padleft1r {
	padding-left: 1rem;
}

.vert-separator {
	padding-top: 2vh;
}

.ls2 {
	letter-spacing: 2px;
}

.ls4 {
	letter-spacing: 4px;
}

.mw300 {
	max-width: 300px;
}

.mw400 {
	max-width: 400px;
}

.mw500 {
	max-width: 500px;
}

.mw600 {
	max-width: 600px;
}

.mw650 {
	max-width: 650px;
}

.mw800 {
	max-width: 800px;
}

.hidden {
	display: none;
}

.red {
	color: var(--red);
}

.biggest {
	font-size: 5rem;
	line-height: 6rem;
}

.verybig {
	font-size: 4rem;
	line-height: 5rem;
}

.big {
	font-size: 2rem;
	line-height: 2.5rem;
}

.small {
	font-size: 0.75rem;
	line-height: 1rem;
}

.light {
	font-weight: 300;
	font-style: normal;
}

.ui-dialog { z-index: 25 !important ;}

.blocker {
	z-index: 100;
}

.modal {
	width: auto !important;
	border: none;
	border-radius: 1rem;
	padding: 2rem;
}

.modal a.close-modal[class*="close-"] {
	top: -16px;
	right: -16px;
	width: 32px;
	height: 32px;
	color: transparent !important;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	text-indent: 0;
	background: var(--marron);
	border: none;
	border-radius: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.75rem;
}

.modal a.close-modal[class*="close-"]:after {
	content: "X";
	color: var(--white);
	position: absolute;
}

.relative {
	position: relative;
}

/* PERSONAL */
#footer a {
	color: inherit;
}

.img-filled {
	max-width: 95%;
	margin: 0 auto;
}

.img-semi-filled {
	max-width: 85%;
	margin: 0 auto;
}

.img-half-filled {
	max-width: 65%;
	margin: 0 auto;
}

.img-real-half-filled {
	max-width: 50%;
	margin: 0 auto;
}

.img-logo-brand {
	max-width: 30%;
	margin: 0 auto;
}

#resultspreloader {
	min-height: 150px;
}

ul.register {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

ul.register li {
	list-style: none;
	padding-bottom: 0.25rem;
	width: 100%;
	margin: 0 auto;
}

ul.register li.expand-content {
	width: fit-content;
	text-align: left;
	margin: 0 auto;
	flex: 1;
	display: flex;
	flex-direction: column;
}

ul.register li.auto-content {
	width: fit-content;
	text-align: left;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

ul.register li.separator {
	width: 3rem;
}

ul.register li.noheight {
	height: 0;
}

.qrconfirm img {
	width: 70%;
	max-width: 400px;
}

.step {
	max-width: 1024px;
	margin: 0 auto;

	display: none;
}

.line {
	height: 0.3vh;
	margin-top: 2vh;
	margin-bottom: 2vh;
	background-color: var(--white);
	opacity: 0.1;
}

.box {
	padding: 3rem 1rem;
	border-radius: 2rem;
	border: 0.15rem solid var(--marron);
}


/*MEMOTEST*/

#memotest .wrapper {
	padding: 25px;
	-webkit-user-select: none; /* Safari */
	user-select: none;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#memotest .cards, .card, .view, .details, p {
	display: flex;
	align-items: center;
	justify-content: center;
}

#memotest .cards {
	height: 70vh;
	width: 70vh;
	flex-wrap: wrap;
	justify-content: space-between;

	padding: 0;
	margin: 0 auto;
}

#memotest .cards .card {
	cursor: pointer;
	position: relative;
	perspective: 1000px;
	transform-style: preserve-3d;
	height: calc(100% / 4 - 10px);
	width: calc(100% / 4 - 10px);
}

#memotest .cards .card .result {
	position: absolute;
	right: -10%;
	top: -10%;
	width: 35%;
	height: 35%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}

#memotest .cards .card .result.ok {
	opacity: 0;
	transition: opacity 0.4s;
	transition-delay: 0.1s;
	background-image: url("../assets/icon_ok.svg");
}

#memotest .cards .card .result.wrong {
	opacity: 0;
	transition: opacity 0.4s;
	transition-delay: 0.1s;
	background-image: url("../assets/icon_wrong.svg");
}

#memotest .card.shake {
	animation: shake 0.35s ease-in-out;
}

#memotest .cards .card .view {
	width: 100%;
	height: 100%;
	user-select: none;
	pointer-events: none;
	position: absolute;
	background: #fff;
	border-radius: 1rem;
	backface-visibility: hidden;
	transition: transform 0.25s linear;
	border: 0.1rem solid var(--marron);
}

#memotest .card .front-view img {
	max-height: 55%;
}

#memotest .card .back-view {
	transform: rotateY(-180deg);
}

#memotest .card .back-view img {
	max-width: 70%;
	max-height: 70%;
}

#memotest .card.flip .front-view {
	transform: rotateY(180deg);
}

#memotest .card.flip .back-view {
	transform: rotateY(0);
}

#memotest .details {
	width: 100%;
	margin-top: 15px;

	border-radius: 7px;
	height: calc(100% / 4 - 30px);
	justify-content: space-between;
}

#memotest .details.center {
	justify-content: center;
}

#memotest .details p {
	font-size: 18px;
	height: 17px;
}

#memotest .details p span {
	margin-left: 8px;
}

#memotest .details button {
	cursor: pointer;
	font-size: 14px;
	color: #990273;
	border-radius: 4px;
	padding: 4px 11px;
	background: #fff;
	border: 2px solid #990273;
	transition: 0.3s ease;
}

#memotest .details button:hover {
	color: #fff;
	background: #990273;
}

#memotest #countDownTimer {
	width: clamp(92px, 12vw, 156px);
	height: clamp(92px, 12vw, 156px);
	margin: 0 auto;
	border-radius: 50%;
	display: block;
}

.ferrero_inline {
	height: 1.5rem;
	display: inline-block;
	vertical-align: middle;
}

.time_circles > div > h4 {
	font-family: "Montserrat";
	display: none;
}

.time_circles > div > span {
	font-family: "Montserrat";
	color: #7fb2dc;
	font-size: clamp(2rem, 4.5vw, 2.6rem);
	line-height: 1;
}

#memotest .padbot1v {
	width: 100%;
	display: flex;
	justify-content: center;
}

#memotest h4 {
	font-family: "Montserrat";
	font-weight: bold;
}

.ingredientes {
	width: 200px;
	max-width: 40vw;
}

#stepResults {
	position: relative;
}

#step4 .tips {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

#step4 .tips li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

#step4 .tips li div {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}

#step4 .tips img {
	width: 3rem;
	height: 3rem;
	flex-shrink: 0;
	border: 0.2rem solid var(--marron);
	border-radius: 2.5rem;
	padding: 0.5rem;
}

#step4 .tips p {
	font-weight: 600;
	font-style: normal;

	text-transform: uppercase;
	display: block;
	margin: 0;
	text-align: left;
}

#step4 .products {
	margin-top: 3rem;
	padding-top: 1rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.6rem;
	align-items: center;
	justify-items: center;
}

#step4 .products img {
	width: 100%;
	max-width: 86px;
	height: auto;
	object-fit: contain;
}

#desktopbg {
	height: 40vh;
	z-index: -1;
	width: 100%;
	position: absolute;
	bottom: 0;

	display: none;
	opacity: 1;
}

.wrapcontain {
	width: 45vw;
	height: 45vw;
	margin: 0 auto;
	display: flex;
	align-items: center;
	position: relative;
}

.wrapcontain img {
	z-index: 1;
}

.wrapcontain .loader {
	width: 100%;
	height: 100%;
	position: absolute;
	background: url("../assets/preloader.svg");
	background-size: 100%;
	background-position: center center;
}


@media only screen and (max-width: 1650px) {
	html, body {
		font-size: 16px;
		line-height: 18px;
	}
}

@media only screen and (max-width: 1366px) {
	html, body {
		font-size: 14px;
		line-height: 16px;
	}
}

@media only screen and (max-width: 1280px) {
	html, body {
		font-size: 12px;
		line-height: 13px;
	}
}

@media only screen and (max-width: 980px) {
	html, body {
		font-size: 10px;
		line-height: 10px;
	}
}

@media screen and (orientation: portrait), (max-width: 1152px) {
	html, body {
		font-size: 12px;
		line-height: 13px;
	}

	body {
		background-color: var(--white);
	}

	#header {
		height: 20vh;
		flex-basis: unset;
	}

	#header .logo {
		max-width: 70vw;
	}

	#header.small {
		height: 12vh;
	}

	#header.minified {
		height: 10vh;
		padding-left: 20vw;
	}

	#page-container {
		padding: 5% 8%;
		width: 84%;
		flex-flow: column;
	}

	body.reverse #page-container {
		flex-flow: column-reverse;
	}

	#content-wrap {
		height: unset;
		width: 100%;
		background-color: transparent;
	}

	.flex-row {
		flex-direction: column;
	}

	.onlyhoriz {
		display: none;
	}

	.onlyvert {
		display: flex;
	}

	.col-avatar {
		flex-direction: row;
		max-width: unset;
		padding: 0;

		position: relative;
		align-items: center;

		flex: 0 0 auto;
	}

	.col-name {
		flex: 0 0 auto;
	}

	.col-mid {
		padding: 0;
	}

	.col-reg {
		display: none;
	}

	.avatar {
		height: 12rem;
		width: 12rem;
		border: none;
	}

	.diserinfo {
		text-align: left;
		padding-left: 5vw;
		flex: 1;
		font-size: 1.2rem;
	}

	.flex-content {
		flex-basis: content;
	}

	#memotest .cards{
		height: 70vw;
		width: 70vw;
	}

	#memotest #countDownTimer {
		width: clamp(84px, 28vw, 132px);
		height: clamp(84px, 28vw, 132px);
	}

	#step4 .tips img {
		width: 2.5rem;
		height: 2.5rem;
	}

	#step4 .products {
		gap: 0.45rem;
	}

	#step4 .products img {
		max-width: 64px;
	}

	.wrapcontain {
		width: 80vw;
		height: 80vw;
	}

	#page-background {
		opacity: 1;
	}

	#desktopbg {
		opacity: 0;
	}
}

@media screen and (max-resolution: 192dpi) {
	html, body {
		font-size: 14px;
	}
}


@media screen and (max-resolution: 192dpi) and (max-width:440px) {
	html, body {
		font-size: 12px;
	}
}

@keyframes loading {
	from {
		transform: rotate(0turn);
	}

	to {
		transform: rotate(1turn);
	}
}

@keyframes shake {
	0%, 100%{
		transform: translateX(0);
	}
	20%{
		transform: translateX(-13px);
	}
	40%{
		transform: translateX(13px);
	}
	60%{
		transform: translateX(-8px);
	}
	80%{
		transform: translateX(8px);
	}
}


@keyframes load4 {
	0%,
	100% {
		box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
	}
	12.5% {
		box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	25% {
		box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	37.5% {
		box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	50% {
		box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	62.5% {
		box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
	}
	75% {
		box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
	}
	87.5% {
		box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
	}
}