/* 17 JUN 25 */

.fwlb_address {
	opacity: 1;
}

	.fwlb_address p {
		opacity: .8;
	}

.nhp_city {
	position: relative;
	display: inline-block;
	margin-bottom: 32px;
}

	.nhp_city_selected {
		display: flex;		
		align-items: flex-end;
		gap: 4px;
		color: #2E3744;
		font-family: 'MyriadPro', Arial, monospace;		
		font-size: 16px;
		font-style: normal;
		font-weight: 700;		
		line-height: 1;		
		position: relative;
		bottom: -3px;
		cursor: pointer;
	}
	
	.nhp_city_selected:before {
		content: '';
		display: inline-block;
		width: 16px;
		height: 16px;
		background: url('/img/city_loc_sign.svg') center no-repeat;
		background-size: contain;
	}
	
	.nhp_city_list {
		position: absolute;
		left: 0;		
		bottom: 16px;
		opacity: 0;
		pointer-events: none;
		transition: opacity .2s ease-in-out;
		z-index: 3;
	}
	
	.nhp_city:hover .nhp_city_list {
		opacity: 1;
		pointer-events: all;
	}
	
		.nhp_city_list ul {
			border-radius: 4px;
			background: #fff;
			box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .15);
			display: flex;
			padding: 16px;
			flex-direction: column;
			align-items: flex-start;
			gap: 8px;
			margin: 0;
		}
		
			.nhp_city_list ul li {
				width: 100%;
			}
			
				.nhp_city_list ul li a,
				.nhp_city_list ul li span {
					font-family: 'MyriadPro', Arial, monospace;
					font-size: 14px;
					font-style: normal;								
					line-height: 120%;
					white-space: nowrap;
					color: #2E3744;
					font-weight: 300;									
					transition: font-weight .2s ease-in-out;
					padding: 0;
					background: transparent;
					text-transform: none;
					display: block;
					text-decoration: none;
					width: 100%;
				}
				
				.nhp_city_list ul li span, 
				.nhp_city_list ul li a:hover {
					font-weight: 600;
				}
				
@media (max-width: 800px) {	

	.nhp_city_list ul li a,
	.nhp_city_list ul li span {
		height: auto;	
	}
	
}

@media (max-width: 640px) {		
					
	.nhp_city_list ul {						
		padding: 10px;						
		gap: 6px;						
	}
	
}	

/* /17 JUN 25 */