/*** reset ***/
*, *::before, *::after { box-sizing: border-box }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0 }
body {
	min-height: 100vh;
	line-height: 1.5;
}
img, picture {
	display: block;
	max-width: 100%;
}
input, button, textarea, select { font:inherit }

/*** header ***/
#header-container {
	width: 100%;
	height: 8%;
	min-height: 70px;
	min-width: 950px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #C7C7C7;
}

#logo {
	width: 250px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	margin-left: 15px;
}

#logoImage {
	width: 250px;
}

.pair-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

#login-profile-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #6E6F73;
	border-radius: 8px;
	padding: 7px 10px;
	margin-right: 15px;
}

.account-circle {
	color: #020452;
	font-size: 18px;
	margin-right: 7px;
}

.change-button {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #C7C7C7;
	border-radius: 50px;
	padding: 10px 10px;
	margin-left: 1em;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.change-button:hover {
	border: 1px solid #D66B3E;
	background-color: #020452;
	color: white;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, .05);
}

/*** fonts ***/
.small-button-text {
	font-family: Europa, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 8px;
	letter-spacing: 1px;
	/* margin: 0; */
	line-height: 0;
	color: #C7C7C7;
}

/*** end ***/