:root {
	--circle-size: 50px;
}

* {
	font-family: "Fira Sans", sans-serif;
}

body {
	margin: 0;
	background-color: black;
	width: 100%;
	height: 100vh;
}
#app {
	width: 100%;
	height: 100%;
}

.clusterer-change {
	padding: 10px;
	border-radius: 10px;

	display: flex;
	flex-direction: column;
	align-items: center;

	gap: 10px;
}

.clusterer-change__section {
	display: flex;
	align-items: center;
	gap: 10px;
}

.clusterer-change__input__label {
	font-size: 18px;
}

.clusterer-change__input {
	max-width: 75px;
	height: 100%;

	font-size: 16px;
	text-align: center;

	border: 2px solid rgba(0, 122, 252, 0.6);
	border-radius: 5px;
	font-size: 16px;
	outline: none;
	transition: border-color 0.2s ease;
}

.clusterer-change__input:hover,
.clusterer-change__input:active {
	border-color: rgba(0, 122, 252, 0.9);
}

.clusterer-change__btn {
	border: none;
	cursor: pointer;

	padding: 7px 10px;

	color: rgb(255, 255, 255);
	font-size: 16px;

	background-color: rgba(0, 122, 252, 0.9);
	border-radius: 10px;
	transition: background-color 0.2s;
}

.clusterer-change__btn:hover {
	background-color: rgb(0, 110, 252);
}

.clusterer-change__btn:active {
	background-color: rgb(0, 122, 252);
}

.center-point {
	position: relative;

	width: var(--circle-size);
	height: var(--circle-size);

	transform: translate(-50%, -50%);

	display: flex;
	justify-content: center;
	align-items: center;
}

.circle {
	background-image: url("icons/clusterIcon.svg");
}

.circle-text {
	font-size: 0.9em;
	font-weight: 600;
	font-style: normal;
	color: #000;
}

.ymaps3x0--marker {
	width: 0;
	height: 0;
}

.hintWindow {
	position: absolute;
	transform: translate(7px, -100%);
	padding: 4px;
	background: white;
	border: 1px solid black;
	opacity: 0.7;
	white-space: nowrap;
}

.hintWindow > b {
	white-space: break-spaces;
}

th,
td {
	padding: 0.2em;
}
