.dmp-frontend {
	width: 100%;
    border: 0;
}

.dmp-frontend-map-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.dmp-frontend-image {
	width: 100%;
	height: auto;
	display: block;
}

.dmp-frontend-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.dmp-f-pin {
	position: absolute;
	width: 30px;
	height: 30px;
	margin-left: -15px;
	margin-top: -15px;
	border-radius: 999px;
	border-style: solid;
	border-width: var(--dmp-pin-border-width, 2px);
	border-color: var(--dmp-pin-border-color, #fff);
	background: var(--dmp-pin-bg, #0059a8);
	color: var(--dmp-pin-color, #fff) !important;
	font-size: 13px;
	font-weight: 700;
	line-height: 26px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	pointer-events: auto;
	font-family: var(--dmp-pin-font, inherit);
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.dmp-f-pin.is-hover {
	transform: scale(1.5);
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
	.dmp-f-pin {
		width: 26px;
		height: 26px;
		margin-left: -13px;
		margin-top: -13px;
		line-height: 22px;
		font-size: 12px;
	}
}
