/*
==============================================
slideLeft
==============================================
*/
/*
.slideLeft{
	animation-name: slideLeft;
	-webkit-animation-name: slideLeft;	

	animation-duration: 1s;	
	-webkit-animation-duration: 1s;

	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		

	animation-delay: .3s;
	-webkit-animation-delay: .3s;

	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;

	visibility: visible !important;	
}

@keyframes slideLeft {
	0% {
		transform: translateX(150%);
		opacity: 0;
	}
	50%{
		transform: translateX(-8%);
		opacity: 1;
	}
	65%{
		transform: translateX(4%);
	}
	80%{
		transform: translateX(-4%);
	}
	95%{
		transform: translateX(2%);
	}			
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@-webkit-keyframes slideLeft {
	0% {
		-webkit-transform: translateX(150%);
		opacity: 0;
	}
	50%{
		-webkit-transform: translateX(-8%);
		opacity: 1;
	}
	65%{
		-webkit-transform: translateX(4%);
	}
	80%{
		-webkit-transform: translateX(-4%);
	}
	95%{
		-webkit-transform: translateX(2%);
	}			
	100% {
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
}
*/
/*
==============================================
Styles
==============================================
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
:focus {
	outline: 0;
}
::-webkit-input-placeholder {
	color: rgba(255,255,255, .8);
}
::-moz-placeholder {
	color: rgba(255,255,255, .8);
}
:-ms-input-placeholder {
	color: rgba(255,255,255, .8);
}
html, body {
	min-height: 100%;
}
body {
	line-height: 1.5em;
	color: #fff;
	background: white;
	font-family: arial, sans-serif;

	background: #a7cfdf;
	background: -moz-linear-gradient(top,  #a7cfdf 0%, #23538a 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a7cfdf), color-stop(100%,#23538a));
	background: -webkit-linear-gradient(top,  #a7cfdf 0%,#23538a 100%);
	background: -o-linear-gradient(top,  #a7cfdf 0%,#23538a 100%);
	background: -ms-linear-gradient(top,  #a7cfdf 0%,#23538a 100%);
	background: linear-gradient(to bottom,  #a7cfdf 0%,#23538a 100%);

	margin-bottom: 6em;
}
header {
	background-color: rgba(255,255,255,.85);
	padding: 1.5em;
	margin-bottom: 1.5em;
	font-size: 1.6em;
}
header a {
	text-decoration: none;
	color: #629ADE;
	font-weight: bold;
	line-height: 110%;
}
header span {
	color: #FFB88C;
	font-weight: normal;
	font-size: .7em;
	display: inline-block;
	opacity: 0;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
label {
	display: block;
	font-size: 1.5em;
	line-height: 2em;
}
h1 {
	font-size: 2em;
	text-align: center;
	line-height: 1.5em;
	font-weight: bold;
}
p {
	margin-bottom: 1.5em;
}
select, #passwordBtn, #password {
	min-width: 10em;
	font-size: 1.2em;
	font-family: arial, sans-serif;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	border: none;
	line-height: 2em;
	background-color: rgba(255,255,255,.3);
	outline:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	cursor:pointer;
	padding: .5em 1.5em;
	margin-bottom: 1.5em;
	width: 100%;
	color: #fff;
	transition: .5s;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
}
select:hover, #passwordBtn:hover {
	background-color: #fff;
	color: #000;
}
#password {
	background-color: #fff;
	color: #000;
	display: none;
}
#password-download-form #password {
	display: block;
}
#main {
	opacity: 0;
	-webkit-transform: scale(1.04);
	transform: scale(1.04);
	transition: .8s;
}
#main.ready {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
#file {
	margin-bottom: 1.5em;
}
#success {
	text-align: center;
}
#download-link {
	padding: 1.5em;
	background-color: rgba(255, 255, 255, .5);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	word-wrap: break-word;
	margin-bottom: 3em;
}
#download-link a {
	color: #fff;
	text-decoration: none;
}
#expired {
	text-align: center;
}
#share {
	opacity: 0;
}
#share a {
	margin: 0 1.5em;
}
#upload-block {
	background-color: rgba(255, 255, 255, .5);
	width: 350px;
	height: 350px;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	background-image: url(../img/disk.png);
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
	margin: 0 auto;
	-webkit-transform: scale(.8);
	transform: scale(.8);
	transition: .5s;
}
#upload-block.changed {
	background-image: url(../img/check.png);
}
#upload-block:hover {
	-webkit-transform: scale(1);
	transform: scale(1);
}
#upload-block input {
	display: none;
}
#filefield {
	padding: 1.5em;
	margin-bottom: 1.5em;
}
#expiration {
	max-width: 380px;
	margin: 0 auto;
	text-align: center;
 }
 #passwordBlock {
 	max-width: 380px;
 	margin: 0 auto;
 }
.clearfix {
	clear: both;
}
.submit {
	padding: 1.5em;
	text-align: center;
}
.submitted {
	display: none;
}
#loader {
	display: none;
	text-align: center;
}
#loader.active {
	display: block;
}
#progressBar {
	background-color: rgba(0,0,0,.3);
	width: 100%;
	height: 1.5em;
	margin-top: 3em;
}
#progressBarInner {
	background-color: #fff;
	height: 1.5em;
	width: 10%;
}
.btn {
	text-decoration: none;
	border: none;
	background-color: #DE6262;
	color: #fff;
	font-family: arial, sans-serif;
	font-size: 1em;
	padding: .5em 1.5em;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	font-size: 1.5em;
	font-weight: bold;
	transition: .5s;
}
.btn:hover {
	cursor: pointer;
	background-color: #7187c6;
}
.notice {
	font-size: 1.5em;
	line-height: 1.5em;
}
#download {
	text-align: center;
	max-width: 600px;
}
.success {
	text-align: center;
}
.error {
	text-align: center;
	font-size: 1.5em;
	line-height: 1.5em;
	color: #fff;
}
.container {
	max-width: 960px;
	margin: 0 auto;
	overflow: hidden;
}

/*
 * Anpassungen
 */

/*#expiration, #passwordBlock { display: none; }*/

/* --- Login Page --- */
#login-page {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}
#login-page h1 {
    margin-bottom: 1.5em;
}
#login-page label {
    display: block;
    font-size: 1.2em;
    line-height: 2em;
    text-align: left;
}
#login-page input[type="text"],
#login-page input[type="password"] {
    width: 100%;
    font-size: 1.2em;
    font-family: arial, sans-serif;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: none;
    line-height: 2em;
    background-color: rgba(255,255,255,.3);
    outline: none;
    padding: .5em 1.5em;
    margin-bottom: 1.5em;
    color: #fff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#login-page input[type="text"]:focus,
#login-page input[type="password"]:focus {
    background-color: #fff;
    color: #000;
}
#login-page .error {
    background-color: rgba(222, 98, 98, .5);
    padding: .5em;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 1.5em;
}

/* --- Header Nav --- */
header nav {
    float: right;
    font-size: .7em;
    margin-top: .4em;
}
header nav a {
    color: #629ADE;
    text-decoration: none;
    margin-left: 2em;
    font-weight: bold;
}
header nav a:hover {
    color: #DE6262;
}
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: rgba(255,255,255,.95);
    min-width: 10em;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: .5em 0;
    margin-top: .3em;
    z-index: 100;
}
.nav-dropdown-content a {
    display: block;
    color: #629ADE;
    padding: .6em 1.2em;
    margin-left: 0;
    font-size: 1.1em;
    white-space: nowrap;
}
.nav-dropdown-content a:hover {
    background-color: rgba(98,154,222,.15);
    color: #DE6262;
}
.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}