.google-map {
	width:100%;
	height:400px;
}

.onde .google-map {
	height:125px;
}

.google-map:not( .is-loaded ) {
	background-color:#e5e5e5 !important;
	-webkit-animation:fade-in-out 1s linear infinite;
	animation:fade-in-out 1s linear infinite;
}

@-webkit-keyframes fade-in-out {
	from { opacity:1; }
	50% { opacity:0; }
	to { opacity:1; }
}

@keyframes fade-in-out {
	from { opacity:1; }
	50% { opacity:0; }
	to { opacity:1; }
}