html, body {  
	font-family: "96 Sans", Arial, Helvetica, sans-serif;
	font-size: 16px;
	box-sizing: border-box;
}
div {
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: 100%;
}
*, *:before, *:after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}
#ad {	
	display: block;
	height: 90px;/*100%;*/
	left: 0px;
	background-color: #ffffff;
	overflow: hidden;
	position: absolute;
	top: 0px;
	width: 728px;/*100%;*/
}
#ad:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	border: black 1px solid;
	pointer-events: none;
}
a {
	cursor: pointer;
}

/* --  content start  --------------------------------------------------------  */

#finger{
	background: url(finger.png) no-repeat;
	height: 250px;
	left: -90px;
	position: absolute;
	transform: scale(.4,.4);
	transition: all .15s;
	top: -82px;
	width: 300px;
}
.tap-in #finger{
	left: -85px;
	transform: scale(.5,.5);
	top: -80px;
}
#flo1{
	background: url(flo.jpg) no-repeat;
	height: 110px;
	left: 0;
	position: absolute;
	top: -19px;
	transition: all .15s;
	width: 750px;
}
.tap-in #flo1{
	top: -21px;
}
#overlay{
	background:#ffffff;
	border-radius: 0px;
	height: 300px;
	left: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	top: -25px;
	transition: all .25s;
	width: 900px;
}
#overlay.in{
	opacity: 1;
}
#overlay.close{
	border-radius: 300px;
	height: 93px;
	left: 18px;
	top: -3px;
	width: 93px;
}
#flo2{
	background: url(06_Toll_Booth_0808_RT_cropped.jpg) no-repeat;
	height: 154px;
	left: -75px;
	position: absolute;
	top: 0px;
	transform: scale(.65);
	width: 170px;
}
.close #flo2{
	left: -60px;
	top: -23px;
	transition: all .25s;
}
#blue{
	background: #1e73e9;
	border-radius: 350px;
	height: 30px;
	left: 0px;
	opacity: 0;
	position: absolute;
	top: 16px;
	width: 30px;
}
#blue.in{
	opacity: 1;
	transition: opacity .05s .15s;
}
#blue.expand{
	height: 1100px;
	left: -255px;
	top: -410px;
	transition: all .5s;
	width: 1100px;
}

#line1{
	background: #ff7e00;
	height: 3px;
	left: 153px;
	opacity: 0;
	position: absolute;
	top: 10px;
	width: 368px;
}
#line1.in{
	opacity: 1;
	position: absolute;
}
#line2{
	background: #ff7e00;
	height: 3px;
	left: 153px;
	opacity: 0;
	position: absolute;
	top: 78px;
	width: 368px;
}
#line2.in{
	opacity: 1;
	position: absolute;
}

/* text */
#rectangle1 {
	height: 70px;
	left: 160px;
	opacity: 1;
	position: absolute;
	top: 10px;
	width: 360px;
}
#text {
    background: url(screentap_728x90.svg) no-repeat;
	height: 100%;
    opacity: 0;
	position: absolute;
	width: 100%;
} 
#text.in {
	opacity: 1;
	position: absolute;
}

/* logo */
#rectangle2 {
	height: 19px;
	left: 580px;
	opacity: 1;
	position: absolute;
	top: 13px;
	width: 126px;
	transform: scale(1.04);
}
#logo{
	background: url(savings_logo.svg) no-repeat;
	height: 100%;
	opacity: 0;
	position: absolute;
	width: 100%;
}
#logo.in{
	opacity: 1;
}

/* --  content ends  ---------------------------------------------------------  */

/* --  CTA  ------------------------------------------------------------------  */

/* button */
#rectangle3 {
	bottom: 9px;
	height: 36px;
	left: 574px;
	opacity: 1;
	position: absolute;
	width: 134px;
}
#rectangle3.in {
	opacity: 1;
	position: absolute;
}
#orangeButton {
    background: url(savings_ScreenTap_OrangeButton_134x36.svg) no-repeat;
	height: 100%;
    opacity: 0;
	position: absolute;
	width: 100%;
	-webkit-transition: all 2s;
	-moz-transition: all 2s;
	-ms-transition: all 2s;
	transition: all 2s;
}
#orangeButton.in {
	opacity: 1;
	position: absolute;
}

#bgExitArea { 
	cursor: pointer; 
	height: 90px; 
	left: 0;
	opacity: 0; 
	position: absolute; 
	top: 0;   
	width: 728px;
	z-index: 2000;
}

/* ---------------------------------------------------------------------------- */

/*ANIMATION*/
.hover #finger{
	animation: hover 1s infinite;
}
@keyframes hover{
	0%	{transform:translate(0,0)}
	25%	{transform:translate(2px,0)}
	50%	{transform:translate(2px,2px)}
	75%	{transform:translate(0,2px)}
	100%{transform:translate(0,0)}
}