/*Beer Finder Form*/
.form-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.form-group:not(:last-child) {
	margin-bottom: 20px;
}

label.form-group-label {
	width: 75px;
	margin-right: 3%;
}

.form-controller,
html input[type="text"].form-controller {
	width: 250px;
	background-color: transparent;
	height: 40px;
	color: #000;
	border: 0;
	border-bottom: 1px solid #000;
}

html input[type="text"].form-controller::placeholder {
	color: #000;
	opacity: 1;
}

html input[type="text"].form-controller:-ms-input-placeholder {
	color: #000;
}

html input[type="text"].form-controller::-ms-input-placeholder {
	color: #000;
}

.beer-finder-search-btn {
	background-color: #f51c27;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 25px;
}

.beer-finder-search-btn:hover {
	background-color: #6C0000;
}

/*Loading Ellipsis*/
.beer-finder-results-loading {
	text-align: center;
}

.beer-finder-loading-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.beer-finder-loading-ellipsis div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-color: #6C0000;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.beer-finder-loading-ellipsis div:nth-child(1) {
	left: 8px;
	animation: beer-finder-loading-ellipsis1 0.6s infinite;
}

.beer-finder-loading-ellipsis div:nth-child(2) {
	left: 8px;
	animation: beer-finder-loading-ellipsis2 0.6s infinite;
}

.beer-finder-loading-ellipsis div:nth-child(3) {
	left: 32px;
	animation: beer-finder-loading-ellipsis2 0.6s infinite;
}

.beer-finder-loading-ellipsis div:nth-child(4) {
	left: 56px;
	animation: beer-finder-loading-ellipsis3 0.6s infinite;
}

@keyframes beer-finder-loading-ellipsis1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes beer-finder-loading-ellipsis3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes beer-finder-loading-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}

/*Beer Finder Search Results*/
.beer-finder-results-map-container {
	display: none;
	margin-bottom: 60px;
}

.info-window-location-phone-container {
	display: none;
}

.beer-finder-heading {
	text-align: center;
	padding: 0;
	margin-bottom: 30px;
}


.beer-finder-location {
	background-color: #fff;
	box-shadow: 2px 2px 4px 0px #333;
	padding: 20px;
	margin-bottom: 30px;
	text-align: center;
}

@media all and (min-width: 981px) {
	.beer-finder-locations {
		display: flex;
		flex-wrap: wrap;
	}

	.beer-finder-location {
		width: 30%;
	}

	.beer-finder-location:not(:nth-child(3n)) {
		margin-right: 5%;
	}
}

@media all and (min-width: 601px) and (max-width: 980px) {
	.beer-finder-locations {
		display: flex;
		flex-wrap: wrap;
	}

	.beer-finder-location {
		width: 47.5%;
	}

	.beer-finder-location:not(:nth-child(2n)) {
		margin-right: 5%;
	}
}

.beer-finder-location-name {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
}

.beer-finder-location-address,
.beer-finder-location-phone {
	font-size: 16px;
}

.beer-finder-location-phone {
	margin-bottom: 20px;
}

.beer-finder-location-name,
.beer-finder-location-address,
.beer-finder-location-city,
.beer-finder-location-brand {
	text-transform: capitalize;
}

.beer-finder-brand-title {
	font-size: 18px;
	font-weight: 600;
}

/*Info Window*/
.info-window-location-name {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: capitalize;
}

.info-window-location-address,
.info-window-location-phone {
	font-size: 14px;
	margin-bottom: 10px;
	text-transform: capitalize;
}

