/*
	Modules
		Search
 */
.srch {
	background: $white;
	display: inline-block;
	position: relative;
	border: solid 1px $black;
	border-radius: 0.5em;
	margin-left: 1em;

	@media #{$md} {
		margin: 0 0 1em;
	}

}

.srch--visible-md {
	display: none;
}

.srch__txt,
.srch__txt[type="text"] {
	border: none;
	line-height: 1.2em;
	padding: 0.4em 0.8em;
	width: 15em;
	height: 2em;
	right: 2em;
	display: inline-block;
	transition: width $speed $easing;

	@media #{$md} {
		width: 100%;
		max-width: none;
		height: auto;
		padding: 0.75em 1em;
	}

}

.srch__btn {
	border: 0 none;
	padding: 0;
	margin: 0 0.8em 0 0;
	min-height: 0;
	width: 1.55em;
	height: 1.5em;
	position: relative;
	top: 0.25em;

	@media #{$md} {
		margin: 0;
		position: absolute;
		right: 1em;
		top: 0.75em;
	}

}

.srch__btn-icon {
	color: $black;
	width: 2em;
	height: 2em;
	transition: all $speed $easing;

	.no-touchevents .srch__btn:hover > &,
	.srch__btn:active > & {
		color: $grey;
	}
}