/* -------------------------
+ Author : Marcus Briggs
+ © Viral Effect LTD
------------------------- */

* {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 100%;
	list-style: none outside none;
    line-height: 1.15;
    text-rendering: optimizeLegibility;  
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
}
html,body,h1,h2,h3,h4 { 
	margin: 0; 
	padding: 0;
}
*, *:before, *:after {  
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box; 
}
table {
	border-collapse: collapse; 
	border-spacing: 0; 
}
ul,li { 
	list-style: none; 
	margin: 0; 
	padding: 0;
}
p {
	margin: 0; 
	padding: 0;
}
p.center {
	text-align:center;
}
p, ul, li, span {
    color: #5e5e5e;
    font-weight: 400;
}
a {
	color: #262626;
	cursor: pointer;
	text-decoration: none;
    /*transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;*/
}
a:hover, a:active, a:visited { 
	text-decoration: none;
}
h1, h2, h3, h4 {
    font-weight: 300;
}
input[type="text"], input[type="password"], input[type="file"], input[type="search"], input[type="date"], input[type="time"], input[type="number"] {
	-webkit-appearance: none;
	border: 1px solid #CFCFCF;
	border-radius: 6px;
	padding: 9px 14px;
    font-size:14px;
    margin: 0;
}
input[type="file"]{
	-webkit-appearance: none;
    padding: 9px 14px;
    background:white;
}
input[type="submit"]{
	-webkit-appearance: none;
	border: none;
	border-radius: 6px;
	padding: 9px 25px;
	cursor: pointer;
}
input[type="date"]{
    appearance: none;
    -moz-appearance: none;
	-webkit-appearance: none;
    min-height: 40px;
}
select {
	/*-webkit-appearance: none;*/
	border: 1px solid #CFCFCF;
	border-radius: 6px;
	padding: 9px 12px;
    font-size:14px;
    margin: 0;
}
textarea {
	-webkit-appearance: none;
	border: 1px solid #CFCFCF;
	border-radius: 6px;
	padding: 12px 14px;
    font-size:14px;
    margin: 0;
}
code {
    font-family: Consolas,"courier new";
    color: crimson;
    background-color: #f1f1f1;
    padding: 2px;
    font-size: 0.9rem;
    word-wrap: anywhere;
}
.full {
	width:100%;
}
.pull-left { 
	float:left;
	text-align:left;
}
.pull-right { 
	float:right;
	text-align:right;
}
.center { 
	text-align:center;
}
.flex-row {
    display:flex;
    flex-direction: row;
}
