.cmokv-selector {
	--cmokv-accent: #2aa8bd;
	--cmokv-accent-dark: #20899b;

	clear: both;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	width: fit-content;
	max-width: 100%;
	margin: 0.8rem 0 1rem;
	padding: 0.5rem 0.6rem;
	border: 1px solid #e1e5e6;
	border-left: 3px solid var(--cmokv-accent);
	background: #fff;
	box-shadow: 0 2px 7px rgb(0 0 0 / 5%);
}

.cmokv-selector__heading {
	min-width: 92px;
}

.cmokv-selector__label {
	color: #111;
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.045em;
	line-height: 1.15;
	text-transform: uppercase;
	white-space: nowrap;
}

.cmokv-selector__heading small {
	display: block;
	margin-top: 0.18rem;
	color: #767676;
	font-size: 0.62rem;
	font-style: normal;
	line-height: 1.2;
}

.cmokv-selector__options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.cmokv-selector__option {
	display: inline-flex;
	min-width: 64px;
	min-height: 42px;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.7rem;
	border: 2px solid #d9ddde;
	border-radius: 2px;
	background: #fff;
	color: #1a1a1a;
	font-style: normal;
	text-align: center;
	text-decoration: none !important;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		box-shadow 160ms ease,
		color 160ms ease,
		transform 160ms ease;
}

.cmokv-selector__option strong {
	font-size: 0.94rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
}

.cmokv-selector__option:hover,
.cmokv-selector__option:focus-visible {
	border-color: var(--cmokv-accent);
	color: var(--cmokv-accent-dark);
	box-shadow: 0 3px 10px rgb(42 168 189 / 18%);
	transform: translateY(-1px);
}

.cmokv-selector__option.is-current {
	border-color: var(--cmokv-accent);
	background: var(--cmokv-accent);
	color: #fff;
	box-shadow: 0 3px 10px rgb(42 168 189 / 24%);
	cursor: default;
	transform: none;
}

.cmokv-selector__option.is-unavailable {
	flex-direction: column;
	border-color: #e3e3e3;
	background: #f4f4f4;
	color: #8a8a8a;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.cmokv-selector__option small {
	display: block;
	margin-top: 0.3rem;
	font-size: 0.62rem;
	line-height: 1;
}

@media (max-width: 544px) {
	.cmokv-selector {
		display: flex;
		align-items: stretch;
		flex-direction: column;
		gap: 0.6rem;
		width: 100%;
		padding: 0.65rem;
	}

	.cmokv-selector__heading {
		min-width: 0;
	}

	.cmokv-selector__options {
		width: 100%;
	}

	.cmokv-selector__option {
		flex: 1 1 0;
		min-width: 64px;
	}
}