/**
 * searchbar - Display a Search Bar as a popup.
 * @version v1.0.3
 * @link https://github.com/ergopix-sarl/JS-Search-Bar
 */
.searchbar {
	background-color:rgba(0,0,0,0.7);
	opacity: 0;
	transition: opacity .3s linear;
	z-index:9999;
	padding: 0 45px;
	height: 0;
	overflow: hidden;
}

.searchbar--visible {
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	display: block;
	opacity: 1;
	height: auto;
	overflow: visible;
}

#mySearchBar .border-radius-32{
	border-radius: 8px;
}

.search-table{
	display: table;
	height: 100%;
	width: 100%;
}

.search-table-cell{
	display: table-cell;
	height: 100%;
	width: 100%;	
	vertical-align: middle;
}

.searchbar--visible .searchbar__form {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}

@media screen and (min-width: 768px) {
	.searchbar__form {
		height:96px;
	}
	
	.searchbar__field {
		padding-left:45px;
		height:96px;
		font-size:2em;
	}
	
	.searchbar__button {
		height: 95px;
		width: 90px;
	}
	
	.searchbar__button .far {
		font-size:2em;
	}
}