.luvbuddy-page {
	display: none;
	opacity: 0;
}

/* Add animation to "page content" */
.luvbuddy-page {
	position: relative;
	-webkit-animation-name: animatebottom;
	-webkit-animation-duration: 1s;
	animation-name: animatebottom;
	animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
	from {
		bottom: -100px;
		opacity: 0;
	}
	to {
		bottom: 0px;
		opacity: 1;
	}
}

@keyframes animatebottom {
	from {
		bottom: -100px;
		opacity: 0;
	}
	to {
		bottom: 0;
		opacity: 1;
	}
}

/* Page preloader */

.preloader {
	background-color: #f6f8fa;
	display: flex;
	align-items: center;
	justify-items: center;
	min-height: 100vh;
}

.multi-spinner-container {
	width: 150px;
	height: 150px;
	position: relative;
	margin: 30px auto;
	overflow: hidden;
}

.multi-spinner {
	position: absolute;
	width: calc(100% - 9.9px);
	height: calc(100% - 9.9px);
	border: 5px solid transparent;
	border-top-color: #ff3366;
	border-radius: 50%;
	-webkit-animation: spin 5s cubic-bezier(0.17, 0.49, 0.96, 0.76) infinite;
	animation: spin 5s cubic-bezier(0.17, 0.49, 0.96, 0.76) infinite;
}
