@media screen and (min-width: 1051px) {
	.header-mobile {
		display: none;
	}

	.header-mobile-empty-space {
		display: none;
	}
}

@media screen and (max-width: 1050px) {
	.header-mobile {
		display: block;
	}

	.header-mobile-empty-space {
		display: block;
	}
}

.header-mobile {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	box-shadow: 0px 4px 5px 0px rgba(0,0,0,.15);
	z-index: 4;
	background-color: #003E4A;
}

.header-mobile-empty-space {
	height: 60px;
}

.header-mobile .logo {
	position: absolute;
	left: 20px;
	top: 3px;
	height: 54px;
}

.header-mobile .hamburger {
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	height: 26px;
}

.header-mobile .search-button {
	position: absolute;
	right: 76px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	height: 29px;
}