.i_world_map {
	position: relative;
	overflow: hidden;
	touch-action: none;
	user-select: none;
	-webkit-user-select: none;
	cursor: grab;
}

.i_world_map.is-dragging {
	cursor: grabbing;
}

.i_world_map svg {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	transform-origin: 0 0;
	will-change: transform;
	pointer-events: auto;
}

.gweb-world-map__controls {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	pointer-events: none;
}

.gweb-world-map__controls-top,
.gweb-world-map__zoom-cluster {
	pointer-events: auto;
}

.gweb-world-map__controls-top {
	display: flex;
	justify-content: flex-end;
}

.gweb-world-map__zoom-cluster {
	display: grid;
	overflow: hidden;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 1px 4px rgba(60, 64, 67, 0.3);
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.gweb-world-map__control {
	width: 44px;
	height: 44px;
	background: #fff;
	color: #5f6368;
	font-size: 24px;
	line-height: 1;
	font-weight: 400;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.16s ease, color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
	box-shadow: 0 1px 4px rgba(60, 64, 67, 0.3);
	cursor: pointer;
	user-select: none;
}

.gweb-world-map__control-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.gweb-world-map__control:hover {
	background: #f8f9fa;
	color: #202124;
	box-shadow: 0 2px 8px rgba(60, 64, 67, 0.28);
}

.gweb-world-map__control + .gweb-world-map__control {
	border-top: 1px solid #e0e0e0;
}

.gweb-world-map__zoom-cluster .gweb-world-map__control {
	width: 44px;
	height: 44px;
	box-shadow: none;
	border-radius: 0;
}

.gweb-world-map__zoom-cluster .gweb-world-map__control + .gweb-world-map__control {
	border-top: 1px solid #e0e0e0;
}

.gweb-world-map__control--reset {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 18px;
	box-shadow: 0 1px 4px rgba(60, 64, 67, 0.3);
	background: #fff;
}

.gweb-world-map__control--reset:hover {
	background: #fff;
}

@media (max-width: 767px) {
	.gweb-world-map__controls {
		right: 12px;
		bottom: 12px;
		gap: 8px;
	}

	.gweb-world-map__control {
		width: 40px;
		height: 40px;
		font-size: 22px;
	}

	.gweb-world-map__zoom-cluster .gweb-world-map__control {
		width: 40px;
		height: 40px;
	}

	.gweb-world-map__control--reset {
		width: 40px;
		height: 40px;
	}
}
