.brnd-searchform-input-wrap {
	position: relative;
	overflow: hidden;
}

form input.brnd-searchform-input {
	width: 220px;
	height: 40px;
	line-height: 40px;
	background: white;
	margin-bottom: 0;
	box-shadow: none;
	border: solid 1px var(--brnd-dark-blue);
	border-radius: 0;
}

.brnd-searchform-field:focus {
	outline: none;
}

.brnd-searchform-input-placeholder {
	background: white;
	position: absolute;
	top: 3px;
	bottom: 3px;
	right: 1px;
	display: flex;
	padding: 0 8px;
	justify-content: flex-start;
	align-items: center;
	transition: opacity 300ms ease-in-out;
}
.brnd-searchform-input-placeholder-text {
	font-size: 16px;
	font-weight: 400;
	color: var(--brnd-dark-gray);
	line-height: 1;
}
.brnd-searchform-input-placeholder-img {
	width: 16px;
	margin-left: 8px;
}
.brnd-searchform-input-wrap {
	display: inline-block;
}
.brnd-searchform-input-wrap-hidden .brnd-searchform-input-placeholder {
	opacity: 0;
}
