#map {
	width: 100%;
	flex: 1;
	min-height: 745px;
	position: relative;
}

.point {
	width: 51px;
	height: 38px;
	border-radius: 5px;
	text-align: center;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
}

.point .marker__logo {
	height: 20px;
}

.point.client {
	background-color: #051243;
}

.point.server {
	background-color: #0c5ce5;
}

.marker {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 7px;
	height: 7px;
}

.marker:before {
	content: '';
	position: relative;
	display: block;
	box-sizing: border-box;
	width: 170%;
	height: 170%;
	margin-left: -35%;
	margin-top: -35%;
	border-radius: 45px;
	/* animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; */
	animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

.marker:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: white;
	border-radius: 15px;
	/* animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite; */
}

@keyframes pulse-ring {
	0% {
		transform: scale(0.63);
	}
	80%,
	100% {
		opacity: 0;
	}
}

@keyframes pulse-dot {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.3);
	}
	100% {
		transform: scale(1);
	}
}

.marker.client::before {
	background-color: #434950;
}

.marker.server::after {
	background-color: #F69F57;
}

.marker.server::before {
	background-color: #fff;
}

.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right {
	display: none;
}

.mapboxgl-canvas-container:active,
.mapboxgl-canvas {
	outline: none;
	border: none;
}

.plan {
	height: 0;
	padding-top: 35px;
	text-align: center;
	line-height: 14px;
}

.planList .value {
	text-transform: uppercase;
	white-space: nowrap;
}
