.gpxqr-sos-marker-wrap {
	position: relative;
	width: 40px;
	height: 40px;
}
.gpxqr-sos-pin {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 26px; height: 26px;
	background: #e5484d;
	border: 2px solid #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	box-shadow: 0 2px 8px rgba(0,0,0,.4);
	z-index: 2;
}
.gpxqr-sos-ring {
	position: absolute;
	top: 50%; left: 50%;
	width: 26px; height: 26px;
	border-radius: 50%;
	background: rgba(229,72,77,0.5);
	transform: translate(-50%, -50%);
	animation: gpxqr-sos-ripple 1.6s ease-out infinite;
	z-index: 1;
}
@keyframes gpxqr-sos-ripple {
	0%   { transform: translate(-50%, -50%) scale(1);   opacity: .7; }
	100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}
