@import url("https://fonts.googleapis.com/css?family=Montserrat&subset=latin-ext");

.fadeInUp {
	animation: a .4s forwards
}

@keyframes a {
	0% {
		opacity: 0;
		transform: translate3d(0, 2rem, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

body {
	font-family: Montserrat, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.4
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase
}

h1 {
	font-size: 2.4rem;
	line-height: 1
}

h2 {
	font-size: 1.8rem
}

h2,
h3 {
	line-height: 1.1
}

h3 {
	font-size: 1.6rem
}

h4 {
	font-size: 1.4rem
}

h4,
h5 {
	line-height: 1.1
}

h5 {
	font-size: 1.3rem
}

h6 {
	font-size: .9rem;
	line-height: 1.1
}

p {
	font-size: 1.25rem
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none
}

html {
	font-size: 62.5%
}

body,
html {
	width: 100%;
	height: 100%
}

body {
	overflow-x: hidden;
	min-width: 320px;
	min-height: 480px;
	background: #fff;
	color: #000;
	z-index: 0
}

body.minified {
	overflow: hidden
}

a {
	text-decoration: none
}

img {
	display: block;
	max-width: 100%;
	height: auto
}

ul {
	list-style-type: disc;
	margin-left: 2rem
}

ul li {
	font-size: 1.175rem;
	margin-bottom: .5rem;
	text-align: left
}

.clearfix:after {
	content: "";
	display: block;
	clear: both
}

.transition {
	transition: all .25s ease
}

.bgz,
.btn__bg {
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat
}

.t-center {
	text-align: center
}

.bg-primary {
	background-color: #ff69b4
}

.bg-accent {
	background-color: #fff
}

.c-primary {
	color: #ff69b4
}

.c-accent {
	color: #fff
}

.adult {
	position: fixed;
	left: 0;
	bottom: 0;
	padding: .75rem 0;
	z-index: 3;
	color: #000;
	text-transform: uppercase;
	font-size: .875rem
}

.adult,
.main {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-direction: column;
	flex-direction: column
}

.main {
	position: relative;
	height: 100%;
	z-index: 1;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden
}

.header {
	padding: 1rem
}

.header span {
	font-size: 1.4rem;
	text-transform: uppercase
}

.header span:last-of-type {
	font-weight: 700;
	font-size: 1.8rem
}

.timer {
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 1px 2px #000;
	text-transform: uppercase
}

.container {
	position: relative;
	z-index: 1
}

.bg,
.container {
	width: 100%;
	height: 100%
}

.bg {
	position: fixed !important;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	display: block;
	background-color: #fff;
	background-image: linear-gradient(-20deg, #fff 55%, #f1f5f7 0)
}

.heart:after,
.heart:before {
	position: absolute;
	content: "";
	left: 25px;
	top: 0;
	width: 25px;
	height: 40px;
	background: #ff69b4;
	border-radius: 50px 50px 0 0;
	transform: rotate(-45deg);
	transform-origin: 0 100%
}

.heart:after {
	left: 0;
	transform: rotate(45deg);
	transform-origin: 100% 100%
}

.spinner {
	margin: 50px auto 0;
	width: 100%;
	text-align: center
}

.spinner .heart {
	width: 50px;
	height: 45px;
	display: inline-block;
	opacity: .8;
	animation: b 1.4s infinite ease-in-out;
	animation-fill-mode: both
}

.heart:after,
.heart:before {
	background: #ff1d8e
}

.spinner .heart1 {
	animation-delay: -.32s
}

.spinner .heart2 {
	animation-delay: -.16s
}

@keyframes b {

	0%,
	80%,
	to {
		transform: scale(0)
	}

	40% {
		transform: scale(1)
	}
}

.btnbox {
	width: 100%;
	-ms-flex-direction: column;
	flex-direction: column
}

.btn,
.btnbox {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center
}

.btn {
	width: 12rem;
	height: 12rem;
	padding: 0;
	margin: 0;
	color: #fff;
	font-size: 2.4rem;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: .1rem;
	border-radius: 1rem;
	border: none;
	cursor: pointer;
	font-weight: 700;
	outline: none
}

.btn:active {
	box-shadow: none
}

.btn:before {
	content: "";
	display: block;
	padding-bottom: 100%
}

.btn__inner {
	display: inline-block;
	position: absolute;
	padding: .5rem
}

.btn__bg,
.btn__inner {
	width: 100%;
	height: 100%
}

.btn__bg {
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	left: 0;
	top: 0;
	border-radius: 1rem;
	border: 1px solid rgba(0, 0, 0, .25);
	text-shadow: 0 1px 1px #000;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .4);
	overflow: hidden;
	padding: 1rem
}

.btn__bg span {
	position: relative;
	z-index: 1
}

.btn__bg:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .2)
}

.btn--accent {
	opacity: .2 !important
}

.btn--block {
	width: 100%;
	height: 12rem;
	max-width: 30rem;
	margin: 0 0 .5rem
}

.stepbox {
	position: relative;
	display: block;
	z-index: 1;
	overflow: hidden
}

.step,
.stepbox {
	width: 100%;
	height: 100%
}

.step {
	position: absolute;
	left: 0;
	top: 0
}

.step:first-of-type .btnbox {
	-ms-flex-direction: row !important;
	flex-direction: row !important;
	margin-bottom: 2rem
}

.step__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 1rem 2rem 3rem
}

.step__header {
	margin-bottom: .5rem
}

.step__body {
	margin-bottom: 1.5rem
}

.step {
	transform: translateY(200%)
}

.step__body,
.step__footer,
.step__header {
	position: relative;
	opacity: 0;
	transition: all .4s ease
}

.step__footer .btnbox a {
	position: relative;
	opacity: 0;
	transform: translateY(2rem)
}

.step__footer .btnbox a:first-child {
	transition: transform .4s ease 0s, opacity .4s ease 0s, box-shadow .25s ease 0s
}

.step__footer .btnbox a:nth-child(2) {
	transition: transform .4s ease .1s, opacity .4s ease .1s, box-shadow .25s ease 0s
}

.step__footer .btnbox a:nth-child(3) {
	transition: transform .4s ease .2s, opacity .4s ease .2s, box-shadow .25s ease 0s
}

.step.active {
	transform: translateY(0)
}

.step.active .step__body,
.step.active .step__footer,
.step.active .step__header {
	opacity: 1
}

.step.active .step__footer .btnbox a {
	opacity: 1;
	transform: translate(0)
}

.step.hidden .step__body,
.step.hidden .step__footer,
.step.hidden .step__header {
	opacity: 0
}

@media (min-width:360px) {
	html {
		font-size: 75%
	}
}

@media (min-width:768px) {
	html {
		font-size: 87.5%
	}
}

@media (min-width:1300px) {
	html {
		font-size: 100%
	}
}

@media screen and (min-width:768px) {
	p {
		font-size: 1.15rem
	}

	.header {
		max-width: 40rem
	}

	.header span {
		font-size: 2rem
	}

	.header span:last-of-type {
		font-size: 2.6rem
	}

	.timer {
		font-size: 5rem
	}

	.container {
		max-width: 40rem
	}

	.step:first-of-type .step__inner {
		-ms-flex-pack: center;
		justify-content: center
	}

	.btn--block {
		height: 12rem
	}
}

@media screen and (min-width:1024px) {
	.container {
		max-width: 50rem
	}

	.btnbox {
		-ms-flex-direction: row;
		flex-direction: row
	}

	.step:first-of-type p,
	.step:last-of-type p {
		text-align: center
	}

	.btn {
		font-size: 1.5rem;
		width: 15rem;
		height: 15rem
	}

	.step:first-of-type .btn,
	.step:last-of-type .btn {
		font-size: 2.5rem
	}

	.step:last-of-type .btn {
		width: 30rem;
		height: 15rem
	}
}