.choose-city-overlay {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 97;
	background: rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease-out;
}

.choose-city-overlay.show {
	display: block;
}

.choose-city {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 98;

	width: 344px;
	height: 456px;

	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.15);

	padding: 7rem 2.8rem 2.4rem 2.8rem;

	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-out;
}

.choose-city.show {
	opacity: 1;
	visibility: visible;
}

.choose-city__form {
	position: relative;

	max-width: 27.8rem;

	margin-bottom: 2.4rem;
}

.choose-city__input {
	width: 100%;
	height: 5.1rem;

	border-radius: 11px;
	background-color: #fff;
	border: 1.14px solid #c8c8c8;

	padding: 1.5rem 1.2rem 1.5rem 1.9rem;

	outline: none;
}

.choose-city__input::placeholder {
	color: #7C7C7C !important;
	font-weight: 500;
	font-size: 1.6rem;
}

.choose-city__button {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	right: -1.3rem;

	width: 3.9rem;
	height: 3.9rem;
	
	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 5px;
	background-color: #000;
	transition: background-color 0.3s ease;

	border: none;
	outline: none;
}

.choose-city__button:hover {
	background-color: #3F892C;
}

.choose-city__link {
	font-size: 1.4rem;
	line-height: 292%;
}

.choose-city__link--active {
	color: #3F892C;
	font-weight: 600;
}

.choose-city__close {
	position: absolute;
	top: 1.4rem;
	right: 1.2rem;

	transition: opacity 0.3s ease;

	border: none;
	outline: none;
	background-color: transparent;
}

.choose-city__close:hover {
	opacity: 0.7;
}