body {
    font-family: 'Fact', sans-serif;    
}

header {
    font-family: 'Fact Expanded', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

header .left-side,
header .right-side {
    display: flex;
    align-items: center;
}

header .logo {
    position: relative;
    top: -6px;
	width: 300px;
}

header .logo svg{
    height: 40px;
}

header span {
    font-size: 0.7em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-left: 20px;
}

header .search form {
    display: flex;
}

header .search form input[type='text'] {
    border-radius: 20px 0 0 20px;
    border: 1px solid #ccc;
    border-right: none;
    padding: 5px 15px;
    outline: none;
}

header #mobileMenu .search form input[type='text'] {
	width: calc(100% - 90px);
}


header .search form input[type='submit'] {
    border-radius: 0 20px 20px 0;
    border: 1px solid #ccc;
    padding: 5px 20px 5px 15px;
    background-color: blue;
    color: #fff;
    border-color: transparent;
}

header #mobileMenu .search form input[type='submit'] {
	width: 90px;
}

header #menubutton {
    width: 30px;
    height: 30px;
}

header #menubutton svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 400px) {
	header .left-side {
		width: 80%
	}
	
	header .left-side .logo,
	header .left-side .logo svg {
		width: 100%;
	}
}