.p_cities_list {
	margin-top: 0;
	margin-bottom: 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.p_city {
	padding: 6px 12px;
	margin: 4px 0;
	background: #f5f5f5;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
	width: 24.3%;
}
.p_city.p_city_empty{
	opacity: 0;
}

.p_city:hover {
	background: #e0e0e0;
}

@media (max-width: 1023px){
	#myTownModal .modal-dialog{
		max-width: 90%;
	}
	.p_city{
		width: 33%;
	}
}

@media (max-width: 767px){
	.t_scroll{
		overflow: auto;
	}
	.p_city{
		width: 100%;
	}
	#myTownModal .modal-dialog{
		max-width: 100%;
	}
	.p_cities_list {
    	max-height: 300px;
    	overflow-y: scroll;
	}
	.tooltip-inner{
        white-space:break-spaces!important;
    }
}
