 .mls-location-switcher {
	width: 100%;
	margin: 0 auto;
	background: #ffffff;
	box-sizing: border-box;
}

.mls-location-switcher *,
.mls-location-switcher *::before,
.mls-location-switcher *::after {
	box-sizing: border-box;
}

.mls-location-switcher__title {
	margin: 0;
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 700;
}

.mls-location-switcher__description {
	margin-top: 10px;
	font-size: 1rem;
	line-height: 1.5;
}

.mls-location-switcher__options {
	display: flex;
	flex-direction: column;
}

.mls-location-switcher__option {
	position: relative;
}

.mls-location-switcher__option-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.mls-location-switcher__option-label {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all .2s ease;
}

.mls-location-switcher__option-circle {
	position: relative;
	width: 18px;
	height: 18px;
	min-width: 18px;
	border-radius: 50%;
	border: 2px solid currentColor;
	opacity: .35;
}

.mls-location-switcher__option-circle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	transform: translate(-50%, -50%) scale(0);
	transition: transform .2s ease;
}

.mls-location-switcher__option.is-selected .mls-location-switcher__option-circle,
.mls-location-switcher__option-input:checked + .mls-location-switcher__option-label .mls-location-switcher__option-circle {
	opacity: 1;
}

.mls-location-switcher__option.is-selected .mls-location-switcher__option-circle::after,
.mls-location-switcher__option-input:checked + .mls-location-switcher__option-label .mls-location-switcher__option-circle::after {
	transform: translate(-50%, -50%) scale(1);
}

.mls-location-switcher__option-text {
	display: block;
	font-size: 1rem;
	line-height: 1.4;
	font-weight: 500;
}

.mls-location-switcher__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.mls-location-switcher__button {
	border: none;
	cursor: pointer;
	transition: all .2s ease;
}

.mls-location-switcher__cancel {
	font-weight: 500;
}

.mls-location-switcher__apply {
	font-weight: 600;
}

.mls-location-switcher__apply[disabled] {
	cursor: not-allowed;
	opacity: .55;
}

.mls-location-switcher-empty {
	padding: 18px;
	background: #fff8e1;
	border: 1px solid #f0d98a;
	color: #664d03;
}

@media (max-width: 767px) {
	.mls-location-switcher__title {
		font-size: 1.6rem;
	}

	.mls-location-switcher__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.mls-location-switcher__button {
		width: 100%;
	}
}