.choose-city-home {
	display: none;
	opacity: 1;
	visibility: visible;

	/*position: absolute;*/
	top: 15.8rem;
	left: 14rem;
	z-index: 99;
	transform: none;

	width: 30rem;
	height: 47.1rem;

	border-radius: 1rem;

	padding: 3rem 2rem;
}

.choose-city-home.show {
	display: block;
}

.choose-city-home__title {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;

	margin-bottom: 2rem;
}

.choose-city-home__input {
	height: 3.6rem;

	border: 1px solid #7C7C7C;
}

.choose-city-home__input::placeholder {
	color: #aeaeae !important;
	font-size: 1.4rem;
	font-weight: 500 !important;
}

.choose-city-home__search-button {
	position: absolute;
	top: 1rem;
	right: 1rem;

	width: 1.6rem;
	height: 1.6rem;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #7C7C7C;

	transition: color 0.3s ease;

	border: none;
	outline: none;
	background-color: transparent;
}

.choose-city-home__search-button:hover {
	color: #3F892C;
}

.choose-city-home__button {
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: -0.02em;

	margin-bottom: 2.5rem;

	border: none;
	outline: none;
	background-color: transparent;
}

.choose-city-home__button:hover {
	color: #3F892C;
	text-decoration: underline #3F892C;
}

.choose-city-home__form {
	position: relative;

	margin-bottom: 2rem;
}

.choose-city-home-confirm,
.choose-city-home__actions,
.choose-city-home__selector,
.choose-city-home__form-close {
	display: none;
}

.location-link.home-custom-location-link {
	margin-right: 6.7rem;
}


/* Adaptiv */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.choose-city-home {
		left: 0;
	}

	.choose-city-home-confirm.show {
		display: flex;
		flex-direction: column;
		justify-content: center;
		row-gap: 1rem;

		position: fixed;
		top: 11.3rem;
		left: 3.6rem;
		z-index: 98;

		width: 30rem;
		height: 6rem;

		border-radius: 0.5rem;
		background-color: #fff;

		padding: 1rem;
	}

	.choose-city-home-confirm__top-text {
		font-size: 1rem;
		font-weight: 500;
		line-height: 1;
	}

	.choose-city-home-confirm__top-text span {
		font-weight: 700;
	}

	.choose-city-home-confirm__top {
		display: flex;
		align-items: center;
		column-gap: 0.9rem;
	}

	.choose-city-home-confirm__button {
		width: 7rem;
		height: 2rem;

		border-radius: 1.6rem;
		background-color: #191919;

		color: #fff;
		font-size: 0.8rem;
		font-weight: 500;

		outline: none;
		border: none;
	}

	.choose-city-home-confirm__button-choose {
		font-size: 0.8rem;
		font-weight: 600;

		background-color: transparent;
		border: none;
		outline: none;
	}

	.choose-city-home-confirm__button-choose:hover {
		color: #3F892C;
		text-decoration: underline #3F892C;
	}

	.choose-city-home-confirm__actions {
		display: flex;
		align-items: center;
		column-gap: 1.4rem;
	}
}

@media only screen and (min-width: 360px) and (max-width: 991px) {
	.choose-city-home__title {
		font-size: 2.2rem;
	}
}

@media only screen and (min-width: 360px) and (max-width: 768px) {
	.choose-city-home {
		top: 0;
		left: 0;

		width: 100%;
		height: 100%;

		border-radius: 0;

		padding: 0;
	}

	.choose-city-home__actions {
		width: 100%;

		display: flex;
		align-items: center;
		justify-content: flex-end;

		margin-bottom: 2.2rem;
		padding: 1.1rem 1.3rem 1.2rem 2.4rem;
	}

	.choose-city-home__actions-button {
		display: flex;
		align-items: center;
		justify-content: center;

		background-color: transparent;
		border: none;
		outline: none;
	}

	.choose-city-home__actions-button__close {
		position: static !important;
	}

	.choose-city-home .choose-city__list {
		margin-right: 6.5rem;
	}

	.choose-city-home .choose-city__form {
		max-width: 34.4rem;

		margin-bottom: 2.5rem;
	}

	.choose-city-home__input {
		height: 5.1rem;

		font-weight: 500;

		border: 1.14px solid #c8c8c8;

		padding: 1.7rem 2.8rem 1.5rem 14rem;
	}

	.choose-city-home__input::placeholder {
		opacity: 0;
	}

	.choose-city-home__input:not(:placeholder-shown)::placeholder {
		opacity: 0;
	}

	.choose-city-home__selector {
		position: absolute;
		top: 1.9rem;
		left: 1.5rem;

		display: flex;
		align-items: center;
		column-gap: 1.4rem;
	}

	.choose-city-home__selector img {
		width: 1.6rem;
		height: 1.6rem;
	}

	.choose-city-home__selector span {
		color: #aeaeae;
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1;
	}

	.choose-city-home__search-button {
		display: none;
	}

	.choose-city-home__content {
		padding-inline: 1.6rem;
	}

	.choose-city-home__title {
		margin-bottom: 2.9rem;
	}

	.choose-city-home__form-close.active {
		position: absolute;
		top: 1.8rem;
		right: 1rem;

		display: flex;
		align-items: center;
		justify-content: center;

		background-color: transparent;
		border: none;
		outline: none;
	}
}