body {
	color: #5B5B5B;
	text-align: center;
	margin: 0px;
	font-family: sans-serif;
}

a {
	text-decoration: none;
	cursor: pointer
}

.content {
	margin: 0;
	padding: 0;
	display: inline-block;
}

.logo {
	width: 300px;
}

.welcomeHeader {
	font-size: 17px;
	color: #616364;
}

.welcomeSubHeader {
	font-size: 12px;
	font-weight: 500;
	color: #616364;
}

.controlContainer {
	width: 314px;
	float: left;
	height: 380px;
	margin: 40px 20px 0;
	border-radius: 10px;
	background-color: #f1f3f7;
	display: flex;
	flex-direction: column;
}

.controlContainerContent {
	overflow-y: auto;
	overflow-x: hidden;
}

.controlHeader {
	width: 296px;
	margin: 0 0 8px;
	padding: 18px 0 18px 18px;
	border-radius: 10px;
	background-color: #f8f8f8;
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.controlHeaderContent {
	font-size: 17px;
	color: #616364;
	margin-left: 16px;
}

.control {
	width: 133px;
	height: 22px;
	margin: 2.8px 0 1.2px 14.3px;
	font-size: 13px;
	color: #2b2b2b;
}

.controlContent {
	width: 195px;
	margin: 16px 20px 16px;
	padding: 22.2px 67px 23.8px 12.7px;
	border-radius: 10px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
	background-color: #fff;
	text-align: left;
	height: 30px;
}

.header {
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: flex-start;
}

.welcome {
	width: 350px;
	text-align: initial;
	margin-top: 70px;
}

.controlImage {
	vertical-align: middle;
	height: 32px;
	width: 32px;
}

.menu {
	top: 0;
	position: fixed;
	width: 100%;
	display: flex;
	justify-content: center;
	background-color: #f8f8f8;
	height: 35px;
}

.menu-entry {
	width: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.menu-entry:hover {
	background-color: #f1f3f7;
}

.scrollable {
	overflow-y: auto;
	scrollbar-color: #888 #f1f1f1;
	scrollbar-width: thin;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #888;
}

::-webkit-scrollbar-thumb:hover {
	background: #666;
}