/*---------------------------------------
    Preloader
-----------------------------------------*/
.preloader {
	position: relative;
	display: grid;
	place-content: center;
	height: 100vh;
	background-color: var(--company-primary-color, #009432);
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 99999;
}

.preloader__img {
	width: 80px;
	height: 80px;
	animation: heart_beat_img 2s infinite ease;
}

.preloader__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}