
/* **************** */
/* GENERELL */
/* **************** */

*{
    margin: 0;
    padding: 0;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
}

body{
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight:normal;
	font-family: 'Open Sans', sans-serif;
	color: #333;
	background: white;
}

html, body{ width:100%; height:100%; }

.clear{ clear:both; }

img{ max-width: 100%; }

input, textarea, select, button{ font-family: 'Open Sans', sans-serif; }

/* **************** */
/* SCHRIFTEN */
/* **************** */

h1, h2, h3 {
	font-size: 23px;
	font-family: 'Open Sans', sans-serif!important;
	font-weight: 300;
	color: #0ba7ef;
	text-align: center;
}

h1{
	background: #0ba7ef;
    padding: 7px;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
}

h2 {
	font-size: 17px;
    text-align: left;
    background: transparent;
    padding: 7px 0px;
    color: #0ba7ef;
    font-weight: bold;
    text-transform: uppercase;
    /* border-top: 1px solid rgb(2, 102, 151); */
    text-align: center;
	cursor:pointer;
	text-align: left;	
	line-height:1em;
}

h3 {
   color: #0ba7ef;
   font-size: 20px;
   text-align: left;
}

a { color: #333; text-decoration: none; }

a:hover { text-decoration: none; }

b{ font-weight: bold; }


/* **************** */
/* FARBEN */
/* **************** */

.red { color: #072b71; }
.cRed { color: #e20000; }
.yellow { color: #0ba7ef; }
.green { color: #00AB4A; }


/* **************** */
/* LOGIN */
/* **************** */

#bodyLogin{
	background: #efefef;
	height:100%;
	width: 100%;
}

#bodyLogin a{ text-decoration: underline; }

#bodyLogin header{
	background:white;
	-webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.5);
	width:400px;
	margin: 0 auto;
	position:absolute;
	top: 25%;
	left: 50%;
	margin-left: -200px;
	height: auto;
}
#bodyLogin.changePassw header{
	top: 18%;
}

#willkommen{
	background: url(metal3.jpg);
	text-align: center;
	color:black;
    background-position: center;
}

#willkommen img{
	margin: 10px;
}

#willkommen h3{
	width: 100%;
	display: block;
	text-align:center;
	background:#072b71;
	color:white;
	text-transform: uppercase;
	padding: 5px;
	font-size: 1.2em;
}

#bodyLogin #login{
	width:100%;
	padding:20px;
}

#bodyLogin .input{
	width:100%;
	margin-bottom: 20px;
}

#bodyLogin .input input{
    width: 100%;
    background: #efefef;
    border: 1px solid #ccc;
    padding: 5px;
	text-align: center;
}

#bodyLogin input[type="submit"]{
	width:100%;
	margin-bottom: 20px;
	background-color: #072b71;
	text-align: center;
	color:white;
	outline: 0;
	cursor: pointer;
	border:none;
	text-transform: uppercase;
	padding: 10px;
	font-weight:bold;
}

@media only screen and (max-width: 600px) {	
	#bodyLogin header {
		width: 300px;
		position: absolute;
		top: 25%;
		left: 50%;
		margin-left: -150px;
	}
}


/* **************** */
/* PWD CHANGE */
/* **************** */

#frmChangePWD #submitPWD:disabled, #frmTermin.passwordChange #submitPWD:disabled{
	background: grey;
	cursor: no-drop;	
}

#frmChangePWD ul, #frmTermin.passwordChange ul{
	margin-top: 10px;
	margin-bottom: 20px;
}

#frmChangePWD ul li, #frmTermin.passwordChange ul li{
	list-style-position: inside;
}

#frmChangePWD input, #frmTermin.passwordChange input{
	outline: 0;	
}

#frmChangePWD #result, #frmTermin.passwordChange #result{
	color: grey;
    width: 100%;
    text-align: right;
    display: block;
	border-top: 2px solid grey;
}

#frmChangePWD #result.weak, #frmTermin.passwordChange #result.weak{
	color: #e20000;
	border-top: 2px solid #e20000;
}
#frmChangePWD #result.good, #frmTermin.passwordChange #result.good{
	color: #072b71;
	border-top: 2px solid #072b71;
}
#frmChangePWD #result.strong, #frmTermin.passwordChange #result.strong{
	color: #00AB4A;
	border-top: 2px solid #00AB4A;
}


/*******************************/
/* MENU */
/*******************************/

#userNav{
	position:absolute;
	top:0;
	left:0;
	z-index: 100;
	/* height: 100%; */
}

#menuToggle {
  display: block;
  position: relative;
  top: 11px;
  left: 20px;  
  z-index: 1;
  padding: 10px;
  /* height: 100%; */
  cursor: pointer;
}

#menuToggle input {
  display: block;
  width: 60px;
  height: 50px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}


#menuToggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  
  background: #072b71;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
  margin-bottom: 0;
}

.aktiv #menuToggle span {
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -3px);
  background: #fff;
}

.aktiv #menuToggle span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.aktiv #menuToggle span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#navContent {	
	font-size: 12px;
	width: 400px;
      
	background: #fff;
	list-style-type: none;
	-webkit-font-smoothing: antialiased;
  
	position: fixed;
    left: -410px;
    margin: 0;
    top: 0;
	
	height: 100%;
	
	-webkit-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.75);
	
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.aktiv #navContent{	
    left: 0;
}

#navContent #welcome{
	background: url(metal3.jpg);
    position: relative;
    width: 100%;
    height: 130px;
    color: white;
    background-position: center;
}

#navContent #welcome .userImage{
	position: absolute;
    right: 0;
    top: 0;
    height: 130px;
    width: auto;
}

#navContent #free{
	height: 62px;    
	background: #072b71;
}

#navContent .text{
	font-size: 1.1em;
    line-height: 1.9em;
    text-transform: uppercase;
    padding-left: 30px;
    padding-top: 46px;
    color: #072b71;
}

#navContent .text h3{
    color: #072b71;
	font-weight: bold;
    font-size: 1.6em;
}

#navContent .text p{
    color: #072b71;
	font-size: 1.2em;
}

#navContent #userFiliale{
	background: #072b71;
    position: relative;
    width: 100%;    
    color: white;
	padding: 15px 30px;
    line-height: 1.3em;
	position:absolute;
	bottom: 0;
}
#navContent #userFiliale a{	
    color: white;
	text-decoration:underline;
}

#navContent #userSettings{
	background: #072b71;
    position: relative;
    width: 100%;    
    color: white;
	padding: 15px 30px;
    line-height: 1.3em;
	position:absolute;
	bottom: 0;
}
#navContent #userSettings a{	
    color: white;
    text-transform: uppercase;
    font-weight: bold;
	-webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#navContent #userSettings a:hover{	
	padding-left: 25px;
}
#navContent #userSettings a:after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    left: 30px;
    top: 23px;
    margin-top: -4px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#navContent #userSettings a:hover:after {
    background-color: white;
}

@media only screen and (max-width: 500px) {	
	#navContent  {
		width:330px;
	}
	#navContent #welcome {
		height: 110px;
		font-size: 10px;
	}
	#navContent #welcome .userImage {
		height: 110px;
	}
	#navContent .text {
		padding-top: 40px;
	}
}

#menu{
	/* padding: 0 30px; */
}

#menu li{
	list-style-type: none;
	-webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
	position:relative;
}

#menu li:after{
   content: '';
   display: inline-block;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background-color: transparent;
   position: absolute;
    left: 30px;
    top: 30px;
    margin-top: -4px;
	-webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;	
}

#menu li.aktiv:after, #menu li:hover:after{  
   background-color: #072b71;
}

#menu li a{
  color:#072b71;
  font-size:1em;
  line-height:  1.6em;
  display: block;
    border-bottom: 1px solid #ddd;
    padding: 20px 30px;
    text-transform: uppercase;
    font-weight: bold;
	-webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
	text-decoration:none;
}

#menu li li a{  
    font-weight: normal;
   padding-left: 50px;
}

#menu li.aktiv a, #menu li:hover a{
   padding-left: 50px;
}
#menu li li.aktiv a, #menu li li:hover a{
   padding-left: 70px;
}

#logout{
	position: absolute;
    right: 15px;
    top: 16px;
}
#logout img{ display:block; }


/* *********************** */
/* Header */
/* *********************** */
  
header{
	background-color:white;
	height:80px;
	display:block;	
	position: relative;
    width: 100%;
    top: 0;
    z-index: 20;
	background: url(metal3.jpg);
    background-position: center;
}  

#logo { 
	position:absolute; 
	top:8px; 
	left: 90px;
}
#logo img{ 
	margin-right:5px; 
	width: 170px;
}

#title {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #0ba7ef;
    font-size: 12px;
	background:#072b71;
    padding: 3px 16px;
    text-align: left;
	padding-left: 90px;
    width: 100%;
    color: white;
}