
.preloader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000000000;
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .4s ease;
}

.fade-out-animation {
	opacity: 0;
	visibility: hidden;
}

.fade-in-animation {
	opacity: 1;
	visibility: visible;
}


.loading-screen-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000000000;
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all .4s ease;
}

.loader-hidden {
	opacity: 0;
	visibility: hidden;
}

.loader-title-holder {
	margin-top: 8px;
	font-size: 0.8rem;
}
