/* =============================================================================
   Store Finder Block ("Find your nearest store")
   ============================================================================= */

.store-finder {
	background-color: #43454b;
	background-size: cover;
	background-position: center;
	position: relative;
}

.store-finder::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.store-finder .block-1-inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
	margin: 0 auto;
}

.store-finder h3 {
	margin-bottom: 25px;
}

.store-finder-form {
	display: flex;
	max-width: 560px;
	margin: 0 auto;
}

.store-finder-form .uk-select {
	flex: 1 1 auto;
	height: 60px;
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	padding: 0 20px;
}

/* Native option text needs dark colour for readability in the open list */
.store-finder-form .uk-select option {
	color: #43454b;
}

.store-finder-submit {
	flex: 0 0 auto;
	width: 60px;
	height: 60px;
	border: 0;
	background: #e74111;
	color: #fff;
	font-size: 22px;
	line-height: 60px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.store-finder-submit:hover {
	background: #c8360e;
}
