.uk-marker
{
	-webkit-animation: ping 2s ease-in-out infinite both;
	animation: ping 2s ease-in-out infinite both;
}
@-webkit-keyframes ping
{
	0%
	{
		border: 5px solid white;
	}
	80%
	{
		border: 0px solid transparent;
	}
	100%
	{
		border: 5px solid white;
	}
}
@keyframes ping
{
	0%
	{
		border: 5px solid white;
	}
	80%
	{
		border: 0px solid transparent;
	}
	100%
	{
		border: 5px solid white;
	}
}
.uk-lightbox IMG
{
	max-height: 80vh;
	max-width: 80vw;
	object-fit: cover;
}
