* {
  box-sizing:border-box;
  font-family: 'Open Sans', sans-serif;
  font-weight:300;
}
@import url(http://fonts.googleapis.com/css?family=Lato:400,700);
body { 
	background-color: #fff;
	font-family:'Lato';
}

.highlight {
	border: 1px solid red;
	font-weight: bold;
	font-size: 45px;
	background-color: #333333;
}

#columns { list-style-type: none; margin: 0; padding: 0; width: 60%; }
#columns li { margin: 0 3px 3px 3px; padding: 0.4em; padding-left: 1.5em; font-size: 1.4em; height: 18px; }
#columns li span { position: absolute; margin-left: -1.3em; }

.heading-primary {
  font-size:2em;
  padding:2em;
  text-align:center;
}
.accordion dl,
.accordion-list {
   border:1px solid #ddd;
   &:after {
	   content: "";
	   display:block;
	   height:1em;
	   width:100%;
	   background-color:darken(#38cc70, 10%);
	 }
}
.accordion dd,
.accordion__panel {
   background-color:#eee;
   font-size:1em;
   line-height:1.5em; 
}
.accordion p {
  padding:1em 2em 1em 2em;
}

.accordion {
	position:relative;
	background-color:#eee;
}
.container {
  max-width:960px;
  margin:0 auto;
  padding:2em 0 2em 0;
}
.accordionTitle,
.accordion__Heading {
 background-color:#386ecc; /* #38cc70; */
   text-align:left;
	 font-weight:700; 
		  /* padding:2em; */
		  padding:1.3em;
		  display:block;
		  text-decoration:none;
		  color:#fff;
		  transition:background-color 0.5s ease-in-out;
  border-bottom:1px solid darken(#38cc70, 5%);
  &:before {
   content: "+";
   font-size:1.5em;
   line-height:0.5em;
   float:left; 
   transition: transform 0.3s ease-in-out;
  }
  &:hover {
	background-color:darken(#38cc70, 10%);
  }
}
.accordionTitleActive, 
.accordionTitle.is-expanded {
   background-color:darken(#38cc70, 10%);
	&:before {
	 
	  transform:rotate(-225deg);
	}
}
.accordionItem {
	height:auto;
	overflow:hidden; 
	
	max-height:50em;
	transition:max-height 1s;   
 
	@media screen and (min-width:48em) {
		max-height:15em;
		transition:max-height 0.5s
	}
}
 
.accordionItem.is-collapsed {
	max-height:0;
}
.no-js .accordionItem.is-collapsed {
  max-height: auto;
}
.animateIn {
	 animation: accordionIn 0.45s normal ease-in-out both 1; 
}
.animateOut {
	 animation: accordionOut 0.45s alternate ease-in-out both 1;
}
@keyframes accordionIn {
  0% {
	opacity: 0;
	transform:scale(0.9) rotateX(-60deg);
	transform-origin: 50% 0;
  }
  100% {
	opacity:1;
	transform:scale(1);
  }
}

@keyframes accordionOut {
	0% {
	   opacity: 1;
	   transform:scale(1);
	 }
	 100% {
		  opacity:0;
		   transform:scale(0.9) rotateX(-60deg);
	   }
}


input[type=text]#myInp, select {
	width: 140px;
	min-height:47px;
	float:left;
	box-sizing: border-box;
	border: 2px solid #ccc;
	/* border-radius: 4px; */
	font-size: 16px;
	background-color: white;
	background-image: url(http://www.w3schools.com/howto/searchicon.png);
	background-position: 10px 12px;
	background-repeat: no-repeat;
	padding: 12px 20px 12px 40px;
	margin:0;
	-webkit-transition: width .4s ease-in-out;
	transition: width .4s ease-in-out;
}
.input[type=text] {
	width: 130px;
	-webkit-transition: width 0.4s ease-in-out;
	transition: width 0.4s ease-in-out;
}
input[type=text]#myInp {
	padding: 13px 20px 13px 40px;
}
select {
	background-image: none;
	margin-right:1px;
	padding-left:6px;
	padding-right:6px;
	width:200px;
}
option {
	padding-top:2px;
	padding-bottom:2px;
}
input[type=text]#myInp:focus {
	width: calc(100% - 201px);
}

@media (max-width: 576px) {
	input[type=text]#myInp {
		width: calc(100% - 201px);
	}
}
form {
	text-align:center;
}

#loginform input {
	/* padding: 10px; */
	border: 1px solid #ddd;
	font-size: 30px;
	width: 50px;
	height: 50px;
	text-align: center;
}

.passwort-vergessen {
	text-align:center;
	margin:0 auto;
	display:block;
	text-decoration:none;
}
#passwortvergessenform label {
	margin-bottom:15px;
	display: block;
}
#passwortvergessenform input {
	font-size: 13pt;
}
#passwortvergessenform input[type="email"] {
	width:350px;
}
#passwortvergessenform input[type="submit"] {
	width:100px;
	cursor: pointer;
}