/* !Content Einleitung ---------------------------------------- */

.appstore-button {
	margin: 10px auto 0;
	display: block;
	width: 169px;
	height: 50px;
	color: transparent;
	text-indent: -9999px;
	background: url(../img/appstore-button.svg) no-repeat;
	-webkit-background-size: 169px 50px;
	-moz-background-size:	 169px 50px;
	-o-background-size:	     169px 50px;
	background-size:		 169px 50px;
}

ul.tabs {
	list-style: none;
	height: 50px;
	padding: 0;
	width: 100%;
	margin: 0 auto;
}

ul.tabs li {
	float: left;
	border-top: 1px solid #647A8C;
	border-right: 1px solid #647A8C;
	border-bottom: 1px solid #647A8C;
	width: 20%;
}

ul.tabs li:first-child {
	border-left: 1px solid #647A8C;
	border-radius: 5px 0  0 5px;
}

ul.tabs li:last-child {
	border-radius: 0 5px 5px 0;
}

ul.tabs li a {
	padding: 10px;
/* 	width: 140px; */
	text-decoration: none;
	color: #647A8C;
	font-size: 12px;
	display: block;
	text-align: center;
}

ul.tabs li.active a {
	color: #FFF;
	background-color: #647A8C;
}


/* !Grafiken iPad ---------------------------------------- */


.screenWrapper {
	position: relative;
	width: 900px;
	height: 600px;
	display: block;
	margin: 30px auto 30px;
}

.screenIpad {
	background: url(../img/ipad-3d-white.png) no-repeat center center;
	background-size: cover;
	width: 900px;
	height: 600px;
	text-align: center;
	position: absolute;
	z-index: 1;
}

.appScreen {
	width: 900px;
	height: 600px;
	text-align: center;
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
}

.pulsar {
	position: absolute;
	left: -20px;
	top: -20px;
	width: 40px;
	height: 40px;
	border-radius: 30px;
	border: 6px solid red;
	opacity: 0;
	 -webkit-animation-name: pulsar;
	 -webkit-animation-duration: 1.7s;
	 -webkit-animation-iteration-count: infinite;
	 -webkit-animation-timing-function: ease-in-out;
	 animation-name: pulsar;
	 animation-duration: 1.7s;
	 animation-iteration-count: infinite;
	 animation-timing-function: ease-in-out;
	 z-index: 100;
}


.punkt {
	width: 14px;
	height: 14px;
	left: -7px;
	top: -7px;
	border-radius: 10px;
	background-color: red;
	position: absolute;
	z-index: 101;
	opacity: 0.7;
}

/* !Bubbles: Übersicht ---------------------------------------- */

.screenOverview #budget {
	top: 250px;
left: 330px;
	position: absolute;
}

.screenOverview #house {
	top: 210px;
	left: 490px;
	position: absolute;
}

.screenOverview #task {
	top: 353px;
	left: 485px;
	position: absolute;
}

.screenOverview #gewerk {
	top: 200px;
left: 660px;
	position: absolute;
}


/* !Bubbels: Bauzeitenplan ---------------------------------------- */

#projectDuration {
	top: 174px;
	left: 309px;
	position: absolute;
}

#works {
	top: 245px;
left: 510px;
	position: absolute;
}

#drafts {
	top: 207px;
left: 375px;
	position: absolute;
}

/* !Bubbles: Kosten ---------------------------------------- */

#budgetAlarm {
	top: 129px;
left: 460px;
	position: absolute;
}

#costGroup {
	top: 175px;
left: 270px;
	position: absolute;
}

#costNote {
	top: 211px;
left: 645px;
	position: absolute;
}



/* !Bubbles: Aufgaben ---------------------------------------- */

#todo {
	top: 155px;
	left: 300px;
	position: absolute;
}

#todoAlert {
	top: 140px;
	left: 660px;
	position: absolute;
}

#todoDone {
	top: 351px;
	left: 360px;
	position: absolute;
}


/* !Bubbles: Baupartner ---------------------------------------- */

#baupartnerList {
	top: 155px;
left: 275px;
	position: absolute;
}

#baupartnerAddress {
	top: 185px;
left: 480px;
	position: absolute;
}

#baupartnerPosition {
	top: 330px;
left: 580px;
	position: absolute;
}

/* !Bubbles: Tipps ---------------------------------------- */


.tipps {
	position: relative;
}

.tipps .pulsarTipp {
	top: 227px;
	left: 583px
}


.pulsarTipp {
	position: absolute;
	left: -20px;
	top: -10px;
	width: 45px;
	height: 30px;
	border-radius: 30px;
	border: 4px solid red;
	opacity: 0;
	 -webkit-animation-name: pulsarTipp;
	 -webkit-animation-duration: 1.4s;
	 -webkit-animation-iteration-count: infinite;
	 -webkit-animation-timing-function: ease-in-out;
	 animation-name: pulsarTipp;
	 animation-duration: 1.7s;
	 animation-iteration-count: infinite;
	 animation-timing-function: ease-in-out;
	 z-index: 100;
}


/* !Bubble Animation Reihenfolge ---------------------------------------- */

.screenOverview .budget .pulsar {
	-webkit-animation-delay: .1s;
}

.screenOverview .house .pulsar {
	-webkit-animation-delay: 0.5s;
}

.screenOverview .gewerk .pulsar {
	-webkit-animation-delay: 0.9s;
}

.screenOverview .task .pulsar {
	-webkit-animation-delay: 1.3s;
}


@-webkit-keyframes pulsar
{		
	0% {
		-webkit-transform: scale(0.25);
		transform: scale(0.25);
		opacity: 0;
	}
	1% {
		opacity: 0.5;
	}
	80% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes pulsar
{		
	0% {
		transform: scale(0.25);
		opacity: 0;
	}
	1% {
		opacity: 0.5;
	}
	80% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		transform: scale(1);
	}
}


@-webkit-keyframes pulsarTipp
{		
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
	1% {
		opacity: 0.5;
	}
	80% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
	}
}

@keyframes pulsarTipp
{		
	0% {
		transform: scale(1);
		opacity: 0;
	}
	1% {
		opacity: 0.5;
	}
	80% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		transform: scale(1.5);
	}
}
