* {
    font-family: 'Open Sans', sans-serif;
	touch-action: manipulation;
}

html {
	-webkit-tap-highlight-color: transparent;
}

body {
	margin: 0;
	background-color: #7b7b7b;
	overflow: hidden;
	transition: .3s;
	will-change: background-color;
}

p {
	text-align: center;
}

a {
	color: white;
	text-decoration: none;
}

.alert-rotate {
	position: fixed;
	background-color: #e23658d9;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	color: whitesmoke;
	z-index: 10000;
	text-align: center;
	font-weight: 300;
	font-size: 26px;
	line-height: 100vh;
	transition: .3s;
}

.popup {
	position: absolute;
	opacity: 0;
	z-index: -1;
	width: 150px;
	height: 140px;
	left: calc(50% - 75px);
	top: calc(50% - 70px);
	transition: .3s;
	text-align: center;
	font-size: 16px;
}

.zoom {
	width: 860px;
	height: 480px;
	margin: auto;
	transform-origin: left top;
	transition: .3s;
}

.field {
    width: 860px;
    height: 480px;
    margin: auto;
    position: relative;
    cursor: pointer;
    background-color: #eaeaea;
	transition: .3s;
	will-change: background-color;
}

.bird {
    position: absolute;
    width: 60px;
    height: 40px;
	z-index: 1;
	-webkit-transform: translate3d(0, 0, 0);
	will-change: left, top, transform;
}

.block {
	position: absolute;
	width: 70px;
	height: 300px;
	background-color: #7b7b7b;
	-webkit-transform: translate3d(0, 0, 0);
	transition: .3s;
	will-change: top, background-color;
}

.triangles {
	width: 840px;
	margin: 0 auto;
}

.triangle-down {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #7b7b7b;
	float: left;
	transition: .3s;
	margin-top: -1px;
	will-change: border-top;
}

.triangle-up {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 20px solid #7b7b7b;
	float: left;
	transition: .3s;
	margin-top: 442px;
	will-change: border-bottom;
}

.button {
    cursor: pointer;
    padding: 5px 10px;
    background-color: #e23658;
    color: white;
    border-radius: 5px;
}

.score {
	position: absolute;
	left: calc(50% - 125px);
	top: calc(50% - 125px);
	color: #eaeaea;
	letter-spacing: 1px;
	width: 250px;
	height: 250px;
	text-align: center;
	border-radius: 50%;
	line-height: 235px;
	font-size: 200px;
	background-color: #fff;
	will-change: color;
}

.unselectable {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
	-webkit-touch-callout: none;
	-ms-user-select: none;
	outline: none;
}

.animate-bottom {
	position: relative;
	overflow: hidden;
	height: 100vh;
	transition: .5s;
}

.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 400px;
	margin-top: -200px;
	margin-left: -200px;
	border-radius: 2px;
	color: #fd4c6f;
}

.center {
	position: absolute;
	width: 220px;
	height: 220px;
	top: 90px;
	left: 90px;
}

.dot-1 {
	position: absolute;
	z-index: 3;
	width: 30px;
	height: 30px;
	top: 95px;
	left: 95px;
	background: #ff5677;
	border-radius: 50%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: jump-jump-1 1s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
	animation: jump-jump-1 1s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

.dot-2 {
	position: absolute;
	z-index: 2;
	width: 60px;
	height: 60px;
	top: 80px;
	left: 80px;
	background: #fb5274;
	border-radius: 50%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: jump-jump-2 1s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
	animation: jump-jump-2 1s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

.dot-3 {
	position: absolute;
	z-index: 1;
	width: 90px;
	height: 90px;
	top: 65px;
	left: 65px;
	background: #fd4c6f;
	border-radius: 50%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: jump-jump-3 1s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
	animation: jump-jump-3 1s cubic-bezier(0.21, 0.98, 0.6, 0.99) infinite alternate;
}

@-webkit-keyframes jump-jump-1 {
	0%, 70% {
		box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes jump-jump-1 {
	0%, 70% {
		box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@-webkit-keyframes jump-jump-2 {
	0%, 40% {
		box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes jump-jump-2 {
	0%, 40% {
		box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@-webkit-keyframes jump-jump-3 {
	0%, 10% {
		box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes jump-jump-3 {
	0%, 10% {
		box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}