/*	map */
	.marker {
		background-color: var(--blue-dark);
		color: #fff;
		border: solid 1px #fff;
		border-radius: 50%;
		box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
		font-size: 1rem;
		font-family: var(--font-serif);
		font-weight: 900;
		width: 2rem;
		height: 2rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: transform .3s;
        z-index: 99;
	}

	.marker .marker-title {
		display: none;
	}

	.marker:hover, .marker.selected {
		background-image: none;
		background-color: var(--red-dark);
		color: #fff;
		cursor: pointer;
		transform: scale(1.5);
		transition: transform .3s;
		cursor: pointer;
		z-index: 101;
		width: auto;
		height: auto;
		border-radius: 2rem;
		padding: .25rem .5rem;
	}

	.marker:hover .marker-title, .marker.selected .marker-title {
		display: block;
		margin-left: .25rem;
	}

	.marker.active {
		background-color: var(--red-dark);
		z-index: 101;
	}
