/*-----------------------------------------------------------------------------------*/
/*	GENERAL BEGIN
/*-----------------------------------------------------------------------------------*/

body {
	margin: 0;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
    height: 100%;
	font-size: 1.4em;
	background: #2e6475;
}

html {
	height: 100%;
	margin:0;
	padding:0;
	font-size: 62.5% !important;
}

html, body {
   margin: 0 !important; padding: 0 !important;
}

a, p, h1, h2, h3, h4, h5, h6, li, ul, form, input, span, button, select {
	font-family: 'Source Sans Pro', sans-serif;
}

#wrapper {
	max-width: 2560px;
    margin: 0 auto;
}

.wrapper-100 {
	height: 100%;
}

#container {
    width: 500px;
    margin: 0 auto;
}

#menu-container {
    width: 90%;
    margin: 0 auto;
}

#menu {
	background: #1B2224;
    color: white;
}

#menu ul {
	list-style: none;
	padding: 0;
}

#menu ul li {
	display: inline-block;
    padding: 1.5em 1em;
    font-weight: 400;
    margin: 0 0.5em;
	color: #B3B3B3;
}

#menu ul li.logout {
	float: right;
    padding-left: 2em;
}

#menu ul li:hover {
	color: white;
}

#menu a {
	color: white;
}

#content {
	width: 100%;
	background: white;
	border-radius:3px;
}

#content-inner {
	padding: 1.5em;
}

h2.headline {
	padding: 1em;
    margin: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    color: white;
    font-size: 1.2em;
    background: #1b2224;
    font-weight: 500;
}

#content form.form input, textarea, select {
	display: block;
    width: 100%;
    margin: 1em 0;
    padding: 1em;
    font-size: 1em;
    border-radius: 3px;
    border: 1px solid #f2f2f2;
	background: #f2f2f2;
	-webkit-appearance: none;
	outline: 0;
	resize: vertical;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

select::after { 
    content: " - Remember this";
}

#content form.form label.placeholder {
	position: absolute;
    padding-left: 1.6em;
    font-size: 0.6em;
    text-transform: uppercase;
    margin-top: 13px;
    font-weight: 600;
    color: #2eb398;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.dirty-placeholder {
	opacity: 1.0 !important;
}

.dirty-input {
	padding-top: 1.7em !important;
	font-weight: 600;
}

#content form.form input:focus, textarea:focus {
	border: 1px solid #2eb398;
}

#content form.form button {
	border: 0px;
    border-radius: 3px;
    width: 100%;
    padding: 1em;
    font-size: 1em;
    background: lightcoral;
    color: white;
    font-weight: 700;
}

#content form.form button:disabled {
	background: rgba(240, 128, 128, 0.5);
}

/* UPLOAD BUTTON */

label.uploadLabel input[type="file"] {
    position: fixed;
    top: -1000px;
}

.uploadLabel {
    display: block;
    width: 100%;
    border-radius: 3px;
    margin-bottom: 1em;
    padding: 1em 0;
	background: #f2f2f2;
}

.uploadLabel span {
	padding: 1em !important;
}

.uploadLabel:hover {
	cursor: pointer;
}
.uploadLabel:active {
}
.uploadLabel :invalid + span {
}
.uploadLabel :valid + span {
	color: black;
    font-weight: 400;
    font-size: 1em;
}

.uploadComplete {
	background: #2eb398;
}

.uploadComplete span {
	color: white;
}

.uploadComplete span.title {
	display: none;
}

.uploadFailed {
	border: 1px solid #FFADAD !important;
}

.uploadFailed span {
	color: #FFADAD !important;
}

p.completed-status {
	font-size: 1em;
    font-weight: 400;
    color: white;
    background: slategrey;
    padding: 1em;
    border-radius: 3px;
}

p.completed-status a {
	color: white;
    font-size: 0.8em;
}