/*  
Author: Kristoffer Lidman
*/
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.5em;
	background: #F5F8FA;
	color: #444;
	margin: 0;
	padding: 10px;
	-webkit-font-smoothing: antialiased;
}
input, select, textarea, button {
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	outline: none;
	-webkit-appearance: none;
}
input:-webkit-autofill {
    /*-webkit-box-shadow: 0 0 0 30px white inset;*/
}
input[type='submit'] {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none; 
}
a {
	color: #41ADD6;
	border: none;
	outline: none;
	text-decoration: none;
}
a:hover {
	color: #000;
}
p {
	margin: 0 0 15px 0;
}
img  {
	border: none;
}
h1, h2, h3, h4, h5  {
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	font-weight: 300;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.fa {
	-webkit-font-smoothing: antialiased;
	-webkit-perspective: 1000;
	text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	color: #aaa;
}
.wrapper {
	width: 400px;
	max-width: 600px;
	margin: 90px auto;
}
.content-box {
	min-height: 80px;
	padding: 20px;
	box-shadow: 0 10px 30px 0 rgba(82,63,105,.05);
	background: #fff;
	float: left;
	margin-bottom: 2%;
	overflow: hidden;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
    border-radius: 4px;
	border-left: 10px solid #FDA70D;
}
.logo-field {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0 0 25px 0;
	font-size: 34px;
	font-weight: 600;
	color: #444;
}
.logo-field span {
	color: #aaa;
}
.content-box.full {
	width: 100%;
}
.content-box h1, .content-box h2 {
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 20px 0;
}
.textfield {
	width: 100%;
	float: left;
	padding: 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
    border-radius: 3px;
	background: #F5F8FA;
	border: 1px solid #F5F8FA;
	font-size: 14px;
	color: #5e6278;
	font-weight: 500;
	transition: color .2s ease,background-color .2s ease;
	margin: 0 0 20px 0;
	-webkit-appearance: none;
}
.textfield:focus {
	border: 1px solid #6FCDF9;
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14);
	-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14);
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14);
}
.label {
	width: 100%;
	float: left;
	font-weight: 600;
	margin: 0 0 4px 0;
}
.label span {
	float: right;
	font-weight: 300;
}
.btn {
	width: 100%;
	float: left;
	padding: 12px 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
    border-radius: 3px;
	background: #009ef7;
	border: 1px solid #009ef7;
	cursor: pointer;
	color: #fff;
	font-size: 14px;
	outline: none;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
}
.btn.secondary {
	color: #009ef7;
	border: 1px solid #009ef7;
	background-color: #f1faff;
}
.btn:hover {
	opacity: 0.8;
}
.btn.fb_blue {
	background: #47639E;
}
.btn.fb_blue .fa {
	color: #fff;
	margin: 0 5px 0 0;
}
.or-line {
	width: 100%;
	float: left;
	line-height: 0em;
	text-align: center;
	margin: 30px 0;
	color: #aaa;
	border-bottom: 2px dashed #e3e7eb;
}
.or-line span {
	padding: 0px 12px;
	font-size: 14px;
	background: #fff;
}

.list-status {
	font-size: 9px;
	text-transform: uppercase;
	padding: 2px 6px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
    border-radius: 2px;
	background: #ccc;
	color: #fff;
}
.list-status.blue {
	background: #5ec9f5;
	color: #fff;
}
.list-status.green {
	background: #b3e628;
	color: #fff;
}
.list-status.red {
	background: #e66b68;
	color: #fff;
}
@media only screen and (max-width: 611px) {
	.wrapper {
		width: 100%;
		margin: 35px auto;
	}
}