div.locations-list
{
	position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    row-gap: 20px;
    column-gap: 20px;
}

	div.location
	{
		position: relative;
		padding: 20px;
		background: #f5f5f5;
		border-radius: 10px;
	}
	
	div.location:hover div.settings_menu
	{
		display: block;
	}

		span.location-name
		{
			font-size: 18px;
			font-weight: 600;
		}
		
		span.location-line
		{
			display: flex;
			align-items: center;
			width: 100%;
			margin-top: 15px;
		}
		
			i.location-icon
			{
				font-size: 18px;
				margin-right: 5px;
				color: #ed2224;
			}
			
			a.location-tel
			{
				color: #000;
			}
			
			a.location-direct
			{
				padding: 5px 40px;
				background: #ed2224;
				border-radius: 20px;
				font-size: 14px;
				text-transform: uppercase;
				color: #fff;
				cursor: pointer;
				transition: 0.3s;
				-o-transition: 0.3s;
				-webkit-transition: 0.3s;
			}
			
			a.location-direct:hover
			{
				background: #df1214;
			}
			
	ul.location-menu
	{
		display: flex;
		flex-direction: column;
		list-style-type: none;
	}
	
		ul.location-menu li ul
		{
			float: left;
			width: 100%;
			padding: 5px 0px 5px 25px;
			box-sizing: border-box;
			list-style-type: none;
		}