/*LOADER*/
.loader {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: calc(1050 * 2);
}

.loader_box {
	margin: auto;
	text-align: center;
	color: #ffffff;
	font-weight: 700;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.loader_box_animation {
	margin: auto;
	width: 10rem;
	animation: scaleLogo 1.2s infinite alternate cubic-bezier(0.25, 0.1, 0.25, 1);
}

.loader_box_title {
	margin-top: 15px;
	font-weight: 600;
}

@keyframes scaleLogo {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}