*,
*:before,
*:after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.tinder {
	width: 100vw;
	height: calc(100vh - 86px);
	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--status i {
	font-size: 100px;
	opacity: 0;
	transform: scale(0.3);
	transition: all 0.2s ease-in-out;
	position: absolute;
	width: 100px;
	margin-left: -50px;
}

.tinder_love .fa-heart {
	opacity: 0.7;
	transform: scale(1);
}

.tinder_nope .fa-times {
	opacity: 0.7;
	transform: scale(1);
}

.tinder--cards {
	flex-grow: 1;
	padding-top: 40px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	z-index: 1;
}

.tinder--card {
	display: inline-block;
	width: 90vw;
	max-width: 400px;
	height: 70vh;
	background: #ccfbfe;
	padding-bottom: 40px;
	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;
}

.tinder--card:hover {
	filter: brightness(90%);
}

.moving.tinder--card {
	transition: none;
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: grabbing;
}

.card-info {
	position: absolute;
	top: 85%;
	left: 18px;
	color: #fff;
	text-align: left;
	pointer-events: none;
	transition: top .5s ease;
}

.tinder--buttons {
	flex: 0 0 100px;
	text-align: center;
	padding-top: 20px;
	position: relative;
}

.tinder--buttons button {
	border-radius: 50%;
	line-height: 60px;
	width: 60px;
	border: 0;
	background: #f5f5f5;
	display: inline-block;
	margin: 0 8px;
}

.tinder--buttons button:focus {
	outline: 0;
}

.tinder--buttons button:hover {
	filter: brightness(95%);
}

.tinder--buttons i {
	font-size: 32px;
	vertical-align: middle;
}

.fa-heart {
	color: #fface4;
}

.fa-times {
	color: #cdd6dd;
}

.hover-msg {
	font-size: 12px;
	position: absolute;
	/* right: 5px; */
	left: 5px;
	bottom: 5px;
}

.cards-over {
	width: 100vw;
	height: calc(100vh - 86px);
}

.jumbotron {
	background: #f8f9fa;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.jumbotron:hover {
	filter: brightness(95%);
}

/* LOADER */
.loader-container {
	width: 100%;
	height: 100vh;
	display: none;
	background: rgba(0, 0, 0, 0.09);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
}
.loader-container div {
	background-color: transparent;
	z-index: 4;
}
lottie-player {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
}
