.tinder {
	width: 100vw;
	height: 500px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
	opacity: 0;
	transition: opacity 0.1s ease-in-out;
}

.loaded.tinder {
	opacity: 1;
}

.tinder--status {
	position: absolute;
	top: 50%;
	margin-top: -30px;
	z-index: 2;
	width: 100%;
	text-align: center;
	pointer-events: none;
}



.tinder_love .fa-arrow-right {
	opacity: 0.7;
	transform: scale(1);
}

.tinder_nope .fa-arrow-left {
	opacity: 0.7;
	transform: scale(1);
}

.tinder--cards {
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	z-index: 1;
}

.tinder--card {
	display: inline-block;
	width: 90vw;
	max-width: 380px;
	height: 65vh;
	padding-bottom: 30px;
	border-radius: 8px;
	overflow: hidden;
	position: absolute;
	will-change: transform;
	transition: all 0.3s ease-in-out;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
	overflow-y: auto;
}

.moving.tinder--card {
	transition: none;
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: grabbing;
}


.tinder--card.cover {
	background: rgb(211, 150, 97);
}


.tinder--card img {
	max-width: 100%;
	pointer-events: none;
}



.tinder--card p,
.tinder--card ul {
	pointer-events: none;
	padding: 10px;
}

.tinder--buttons button:focus {
	outline: 0;
}

.tinder--buttons button:hover {
	opacity: 0.7;
}

.tinder--buttons i {
	font-size: 32px;
	vertical-align: middle;
}

.fa-arrow-left,
.fa-arrow-right {
	color: #cdd6dd;
}




.fa-ul .cover {
	display: inline-block;
	margin-top: 15px;
	font-size: 1.5em;
}


.tinder--info {
	position: absolute;
	top: 200vh;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	width: 90vw;
	max-width: 380px;
	padding-top: 20px;
	padding-bottom: 40px;
	padding-left: 20px;
	padding-right: 20px;
	transition: 500ms;
}

.tinder--info > .covering {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 100vh;
	width: 100vw;
	background: rgba(255, 255, 255, 0.5);
	z-index: -5;
}




.promptBox {
	height: 100px;
	width: 100px;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 55%;
	opacity: 1;
	transition: 300ms;
	pointer-events: none;
	z-index: 1;
}
.tapperoo {
	height: 25%;
	width: 25%;
	position: absolute;
	top: 20%;
	left: 33%;
	border-radius: 100px;
	background-color: #0095dd;
	z-index: -1;
	animation: tapperoo 3s infinite;
}
@keyframes tapperoo {
	0% {
		height: 25%;
		width: 25%;
	}
	50% {
		height: 5%;
		width: 35%;
		opacity: 0;
		transform: translate(-250%);
	}
	100% {
		opacity: 0;
	}
}

#tap-gesture {
	position: absolute;
	transform: rotate(30deg);
	animation: handMove 3s infinite;
}
@keyframes handMove {
	0% {
		transform: rotate(30deg);
	}
	50% {
		transform: translate(-60%, -10%) rotate(-30deg) scale(0.9);
	}
	100% {
		transform: rotate(30deg);
	}
}
