.select-city-wrap {
	position: relative;
}

.select-city__block__text {
	font-weight: 600;
	font-size: 12px;
	line-height: 1.67;
	letter-spacing: -0.02em;
	color: #272727;

	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	padding: 6px 12px 0 6px;
}

.select-city__modal-wrap {
	width: 100%;
	position: absolute;
	z-index: 2;
	padding: 12px;

	background: linear-gradient(162.18deg, #FBFCFF 0%, #FCFDFF 50%, #FAFBFC 100%);
	box-shadow: 4px 10px 30px rgba(29, 70, 142, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 0 0 12px 12px;
	box-sizing: border-box;
	display: none;
}

.select-city__container.active .select-city__block__text {
	color: #1D468E;
}

.select-city__modal__title {
	color: #000000 !important;
	font-family: 'ProximaNova' !important;
	line-height: 30px;
	font-size: 25px !important;
	margin-bottom: 20px !important;
}

.select-city__modal__list__item {
	font-weight: 400;
	font-size: 12px;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #272727;
	cursor: pointer;
	margin-bottom: 10px;
}

.select-city__modal__list__item:hover, .select-city__modal__list__item:focus,
.select-city__modal__list__item:active {
	color: #1D468E !important;
}

.select-city-wrap .select-city__block--sidebar {
	display: none;
}

.select-city-wrap .select-city__block--sidebar .select-city__modal-sidebar-close {
	display: none;
}


.select-city-wrap--sidebar {
	position: static;
	padding: 0 20px;
	margin-bottom: 10px;
}

.select-city-wrap--sidebar .select-city__modal-wrap {
	position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    padding: 0;
    z-index: 35;
	padding: 20px;
	box-sizing: border-box;
	display: block;
}

.select-city-wrap--sidebar .select-city__modal-wrap.visible {
	transform: translateX(0);
}

.select-city-wrap--sidebar .select-city__modal__list {
	padding-left: 35px;
}

.select-city-wrap--sidebar .select-city__block--sidebar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.select-city-wrap--sidebar .select-city__block--sidebar .select-city__modal-sidebar-close {
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.select-city-wrap--sidebar .select-city__modal__list__item {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: -0.03em;
	margin-bottom: 16px;
}

.select-city-wrap--sidebar .select-city__block__text {
	padding: 0;
}