/* chart */
#map-wrap {
	width: 100%;
	max-width: 1100px;
	margin: auto;
	background: transparent;
	position: relative;
}

.location-content svg {
	width: 100%;
	height: 680px;
	display: block;
}

.state {
	fill: #f4fcff;
	stroke: #a3928c;
	stroke-width: 0.8px;
	cursor: pointer;
}

.state:hover {
	fill: #f4fcff;
}

.point {
	stroke: #27364b;
	fill: #27364b;
	stroke-width: 0.4px;
	cursor: pointer;
}

.tooltip {
	position: absolute;
	pointer-events: auto;
	background: white;
	border-radius: 16px;
	padding: 16px;
	transform: translate(-50%, -100%) translateY(-12px);
	transition: opacity 0.15s ease;
	opacity: 0;
	z-index: 1000;
	display: flex;
	gap: 24px;
	width: 100%;
	max-width: 360px;
	box-shadow: 0px 4px 28.4px 0px #0000001f;
}

.tooltip.show {
	opacity: 1;
}

.tooltip .title {
	font-weight: 600;
	font-size: 20px;
	color: #27364b;
	margin-bottom: 0;
}

.tooltip .desc {
	font-size: 16px;
	color: #64748b;
	margin-bottom: 0;
}

.tooltip a {
	font-size: 16px;
	color: #0274f9;
	text-decoration: underline;
	margin-bottom: 0;
}

.tooltip a:hover {
	color: #0274f9 !important;
	text-decoration: underline;
}

.tooltip-img {
	max-width: 86px;
	max-height: 86px;
	overflow: hidden;
	border-radius: 12px;
}

.tooltip-img img {
	height: 100%;
}

.arrow-img {
	max-width: 20px;
	max-height: 12px;
	display: flex;
	align-items: center;
}



@media (max-width: 991px) {
	

	.providers-content {
		flex-direction: column;
		gap: 24px;
	}

	.providers-content-left {
		padding: 0;
	}

	.provider-profile-img {
		max-width: 48px;
		max-height: 48px;
	}

	.provider-profile-text,
	.provider-profile {
		gap: 8px;
	}

	.provider-comment {
		padding: 12px;
	}

	.provider-comment .h5-text {
		font-size: 14px;
		line-height: 1.4;
	}

	.faded-plus-bottom {
		bottom: -5px;
	}

	.provider-testimonial-btn {
		padding: 10px 24px;
	}

	.handling-content .row {
		flex-direction: column-reverse;
	}

	.trusted-heading .h5-text {
		font-size: 14px;
	}

	.handling-main-img {
		max-width: 100%;
		min-height: 298px;
		margin: auto;
	}

	.single-handing-point {
		flex-direction: column;
	}

	.handle-icon {
		min-width: 44px;
		min-height: 44px;
	}

	.handle-icon img {
		max-width: 22px;
		max-height: 22px;
	}

	.handling-points {
		gap: 24px;
	}

	.location-content {
		background: none;
	}

	.loctaion-wrapper {
		border: 1px solid var(--color-grey-8);
		border-radius: 12px;
		padding: 16px;
		margin: 0 16px;
	}

	.loctaion-wrapper .h5-text {
		font-size: 14px;
	}

	.banner-subheading .h4-text {
		font-size: 14px;
	}

	.provider-texts .h5-text {
		font-size: 14px;
	}

	.tooltip {
		flex-direction: column;
		/* align-items: center; */
		max-width: 160px;
		gap: 8px;
	}

	.location-content svg {
		height: 220px;
	}

	.tooltip .title {
		font-size: 16px;
		/* text-align: center; */
	}

	.tooltip .desc,
	.tooltip a {
		font-size: 14px;
		/* text-align: center; */
	}

	.tooltip-img {
		max-width: 56px;
		max-height: 48px;
	}

	
}

