/*LOADER*/
.loader-body {
	width: 100%;
	height: 100vh;
	background-color: #FFFFFF;
	position: fixed;
	z-index: 999999;
	visibility: visible;
	top: 0;
	left: 0;
	text-align: center;
	justify-content: center;
	align-content: center;
	transition: 0.5s all;
}
.loader-mallorca {
    width: 90;
    height: 90px;
    position: absolute;
    top: calc(50% - 45px);
    left: calc(50% - 45px);
    -webkit-animation: .7s pulse infinite linear;
    -o-animation: .7s pulse infinite linear;
    animation: .7s pulse infinite linear;
}
.loader-body.done {
	visibility: hidden;
	opacity: 0;
}
@keyframes spin {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}