* {
	box-sizing: border-box;
	/* font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif; */
	font-family: 'Fira Sans', sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background-color: #435165;
	margin: 0;
	font-family: 'Fira Sans', sans-serif;
}

.login,
.register {
	width: 400px;
	background-color: #ffffff;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
	margin: 100px auto;
}

.login h1,
.register h1 {
	text-align: center;
	color: #5b6574;
	font-size: 24px;
	padding: 20px 0 20px 0;
	border-bottom: 1px solid #dee0e4;
}

.login .links,
.register .links {
	display: flex;
	padding: 0 15px;
}

.login .links a,
.register .links a {
	color: #adb2ba;
	text-decoration: none;
	display: inline-flex;
	padding: 0 10px 10px 10px;
	font-weight: bold;
}

.login .links a:hover,
.register .links a:hover {
	color: #9da3ac;
}

.login .links a.active,
.register .links a.active {
	border-bottom: 3px solid #3274d6;
	color: #3274d6;
}

.login form,
.register form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 20px;
}

.login form label,
.register form label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: #3274d6;
	color: #ffffff;
}

.login form input[type="password"],
.login form input[type="text"],
.login form input[type="email"],
.register form input[type="password"],
.register form input[type="text"],
.register form input[type="email"] {
	width: 310px;
	height: 50px;
	border: 1px solid #dee0e4;
	margin-bottom: 20px;
	padding: 0 15px;
}

.login form input[type="submit"],
.register form input[type="submit"] {
	width: 100%;
	padding: 15px;
	margin-top: 20px;
	background-color: #3274d6;
	border: 0;
	cursor: pointer;
	font-weight: bold;
	color: #ffffff;
	transition: background-color 0.2s;
}

.login form input[type="submit"]:hover,
.register form input[type="submit"]:hover {
	background-color: #2868c7;
	transition: background-color 0.2s;
}

.navtop {
	background-color: #172b69;
	/*background-color: #2f3947;*/
	height: 50px;
	width: 100%;
	border: 0;
}

.navtop div {
	display: flex;
	margin: 0 auto;
	width: 80%;
	height: 100%;
}

.navtop div h1,
.navtop div a {
	display: inline-flex;
	align-items: center;
}

.navtop div h1 {
	flex: 1;
	font-size: 24px;
	padding: 0;
	margin: 0;
	color: #eaebed;
	font-weight: normal;
}

.navtop div a {
	padding: 0 20px;
	text-decoration: none;
	color: #c1c4c8;
	font-weight: bold;
}

.navtop div a i {
	padding: 2px 8px 0 0;
}

.navtop div a:hover {
	color: #eaebed;
}


body.loggedin {
	background-color: #f3f4f7;
}

.content {
	width: 1000px;
	margin: 0 auto;
}

.content h2 {
	margin: 0;
	padding: 25px 0;
	font-size: 22px;
	border-bottom: 1px solid #e0e0e3;
	color: #4a536e;
}

.content>p,
.content>div {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 25px 0;
	padding: 25px;
	background-color: #fff;
}

.content>p table td,
.content>div table td {
	padding: 5px;
}

.content>p table td:first-child,
.content>div table td:first-child {
	font-weight: bold;
	color: #4a536e;
	padding-right: 15px;
}

.content>div p {
	padding: 5px;
	margin: 0 0 10px 0;
}

main>.container {
	padding: 60px 15px 0;
}

.footer {
	background-color: #e0dbdb;
	font-size: small;
	height: 2.2em;
}

.footer>.container {
	padding-right: 15px;
	padding-left: 15px;
}

code {
	font-size: 60%;
}

.ascii-art {
	font-family: monospace;
	white-space: pre;
	text-align: center;
	margin: 0 auto;
	padding-top: 70px;
}

.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}

a.float:hover {
	color: #e0e0e3;
}

.my-float {
	margin-top: 16px;

}

.collapsing {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition-property: height, visibility;
	transition-property: height, visibility;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

.box {
	box-sizing: border-box;
	border: 3px solid transparent;
	background-clip: padding-box;
}

/* File Uploader CSS*/
.upload-drop-zone {
	height: 200px;
	border-width: 2px;
	margin-bottom: 20px;
}

.upload-drop-zone {
	color: rgba(204, 204, 204, 0.836);
	border-style: dashed;
	border-color: #ccc;
	line-height: 200px;
	text-align: center
}

.upload-drop-zone:hover {
	border-color: rgba(27, 153, 226, 0.836);
}


/* CUSTOMS CHECKBOXES */
.checkBox input[type='radio'] {
	display: none;
}

.checkBox input[type='radio']+label:before {
	font-family: FontAwesome;
	display: inline-block;
	font-size: 1.5rem;
}

.checkBox input[type=radio]+label:before {
	content: "\f058";
	letter-spacing: 10px;
	cursor: pointer;
}

.checkBox input[type=radio]:checked+label:before {
	content: "\f058";
	color: #40c72e;
	letter-spacing: 10px;
}

.crossBox input[type='radio'] {
	display: none;
}

.crossBox input[type='radio']+label:before {
	font-family: FontAwesome;
	display: inline-block;
	font-size: 1.5rem;
}

.crossBox input[type=radio]+label:before {
	content: "\f057";
	letter-spacing: 10px;
	cursor: pointer;
}

.crossBox input[type=radio]:checked+label:before {
	content: "\f057";
	color: #c72e2e;
	letter-spacing: 10px;
}

.noneBox input[type='radio'] {
	display: none;
}

.noneBox input[type='radio']+label:before {
	font-family: FontAwesome;
	display: inline-block;
	font-size: 1.5rem;
}

.noneBox input[type=radio]+label:before {
	content: "\f05e";
	letter-spacing: 10px;
	cursor: pointer;
}

.noneBox input[type=radio]:checked+label:before {
	content: "\f05e";
	color: #c7bd2e;
	letter-spacing: 10px;
}

.maybeBox input[type='radio'] {
	display: none;
}

.maybeBox input[type='radio']+label:before {
	font-family: FontAwesome;
	display: inline-block;
	font-size: 1.5rem;
}

.maybeBox input[type=radio]+label:before {
	content: "\f059";
	letter-spacing: 10px;
	cursor: pointer;
}

.maybeBox input[type=radio]:checked+label:before {
	content: "\f059";
	color: #914d0d;
	letter-spacing: 10px;
}

.user-icons > .user-classification-icon {
	width: 30px;
	height: 30px;
	overflow: hidden;
	float: left;
	border-radius: 50%;
	margin-top: 6px;
	margin: 3px;
}

.user-icons > .active {
	border: 1px solid green;
}

.section-hidden {
  display: none;
}
