.location-finder-map {
	width: 100%;
	height: 450px
}

.main-container .location-finder-wrapper form label.searchLabel{
	width: auto;
}

.main-container .location-finder-wrapper form input.searchText{
	width: 40rem;
	max-width: 100%;
	display: inline-block;
}

.locations-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 5rem;
}

.locations-list .location-entry {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border-bottom: solid 1px #d3d3d3;
	padding: 1.75rem 0rem;
}
.locations-list .location-entry a{
	
}

.location-entry .button {
	border:1px solid silver;
	text-decoration: none;
	display: block;
	font-size: 90%;
	line-height: 1.25em;
}

.location-entry .button:hover{
	background-color:#ccc!important;
}


.locations-list .location-entry.head {
	font-weight: 500
}

.locations-list .location-entry:not(.head) {
	font-size: 1.5rem
}

.locations-list .location-entry > * {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	padding: 5px
}

.locations-list .location-entry .company {
	width: 28%
}

.locations-list .location-entry .address {
	width: 40%
}

.locations-list .location-entry .url {
	width: 22%
}

.locations-list .location-entry .email {
	width: 25%
}


.locations-list .location-entry .distance {
	width: 10%;
	text-align: right
}

@media screen and (max-width: 768px) {
	
	.locations-list .location-entry {
		-webkit-box-align:start;
		-ms-flex-align: start;
		-ms-grid-row-align: flex-start;
		align-items: flex-start
	}
	
	.locations-list .location-entry.head {
		display:none
	}
	
	.locations-list .location-entry .company {
		width:50%;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}
	
	.locations-list .location-entry .address {
		width:50%;
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}
	
	.locations-list .location-entry .url {
		width:50%;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	
	.locations-list .location-entry .email {
		width:50%;
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	
	.locations-list .location-entry .distance {
		display:none
	}
	
}

@media screen and (max-width: 600px) {
	
	.main-container .location-finder-wrapper form input.searchText{
		width: 32rem;
	}
}

@media screen and (max-width: 480px) {
	
	.main-container .location-finder-wrapper form input.searchText{
		width: calc(100% - 95px);
	}
	
	.location-finder-wrapper *::-webkit-input-placeholder { /* Edge */
		color: transparent;
	}
	
	.location-finder-wrapper *:-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: transparent;
	}
	
	.location-finder-wrapper *::placeholder {
		color: transparent;
	}
	
	.locations-list .location-entry .company {
		width:100%
	}
	
	.locations-list .location-entry .address {
		width:100%
	}
	
	.locations-list .location-entry .distance {
		width:100%
	}
	
	.locations-list .location-entry .email {
		width:100%
	}
	
	.locations-list .location-entry .url {
		width:100%;
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	
}

@media screen and (max-width: 350px) {
	.main-container .location-finder-wrapper form input.searchText{
		width: 100%;
		margin-top: 1rem;
		margin-bottom: 1rem;
	}