
html, body {  
	font-family: 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: 250px;/*100%;*/
	left: 0px;
	background-color: #ffffff;
	overflow: hidden;
	position: absolute;
	top: 0px;
	width: 300px;/*100%;*/
}
#ad:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	border: black 1px solid;
	pointer-events: none;
}
a {
	cursor: pointer;
}

#direct-tag {
	display: none;  /*Note: Change display to 'visible' to enable "DIRECT" tagline*/
}

#commercial-tag {
	display: none;  /*Note: Change display to 'visible' to enable "COMMERCIAL" tagline*/
}

/* --  common animations  --------------------------------------------------------  */
/* global animation timing */
[class*="fade"], [class*="zoom"], [class*="slide"]{
	transition: all .5s ease-in-out;
}
.fadein:not(.out),
body .fadeout.out {
	opacity: 0;
}
.fadein.in,
.fadeout {
	opacity: 1;
}
.zoomin:not(.out),
body .zoomout.out {
	transform: scale(.00000000001);  /*animation bug - doesn't run if "0"*/
}
.zoomin.in,
.zoomout {
	transform: scale(1);
}
.slidein:not(.out),
body .slideout.out {
	transform: translateX(-100%);
}
.slidein.in,
.slideout {
	transform: translateX(0);
}

/* --  utilities  --------------------------------------------------------  */

.center {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: space-evenly;
	    align-content: space-evenly;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    -ms-flex-pack: space-evenly;
	        justify-content: space-evenly;
}
.center > * {
	position: static;
	margin: auto;
}

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

#logo {
	background: url(PGR_logo_2d95e5_126x18.svg) no-repeat;
	bottom: 29px;
	height: 18px;
	left: 17px;
	position: absolute;
	width: 126px;
	transform: scale(1.04);
}

#text {
	background: url(text_300x250.svg) no-repeat;
	height: 136px;
	left: 14px;
	position: absolute;
	top: 17px;
	width: 220px;
}

#disclaimer {
	background: url(disclaimer.svg) no-repeat;
	bottom: 4px;
	height: 16px;
	left: -48px;
	position: absolute;
	width: 255px;
	transform: scale(.5);
}

/* --  speedometer  ----------------------------------------------------------  */

#speedometer, #needle, #circle {
	height: 130px;
	left: 157px;
	overflow: hidden;
	position: absolute;
	top: 50px;
	width: 130px;
}

#speedometer {
	background: url(speedometer.svg) no-repeat;
}
#needle {
	background: url(needle.svg) no-repeat;
	animation: speed 8s infinite;
}
#circle {
	background: url(circle.svg) no-repeat;
}

@keyframes speed {
	0%, 100% { transform: rotate(0); }
	12% { transform: rotate(55deg); }
	22% { transform: rotate(30deg); }
	32% { transform: rotate(122deg); }
	42% { transform: rotate(102deg); }
	52% { transform: rotate(208deg); }
	62% { transform: rotate(195deg); }
	69%, 72%, 74%, 76%, 78%, 80%, 82% { transform: rotate(270deg); }
	68%, 70%, 73%, 75%, 77%, 79% { transform: rotate(250deg); }
	71%, 81% { transform: rotate(260deg); }
}

/* @keyframes speed {
	0% { transform: rotate(0); }
   50% { transform: rotate(270deg); }
  100% { transform: rotate(0deg); }
} */

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

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

#cta {
	bottom: 20px;
	height: 36px;
	right: 12px;
	width: 134px;
	transform: scale(1);
	z-index: 110;
}

#cta-button, #cta-button > * {
	transition: all .3s ease-in-out;
}

.cta-button-bg			{fill:#2aa5fc;} /* Blue button fill */
/* .cta-button-bg			{fill:#ff8a39;} Orange button fill */
.cta-button-textgroup	{fill:#ffffff;}

/* hover effects for button */
#cta-button:hover {
	 transform: scale(1.05); 
}
#cta-button:hover .cta-button-bg 		{fill: #0062cf;} /* Blue button hover */
/* #cta-button:hover .cta-button-bg 		{fill: #d3732e;} Orange button hover */
#cta-button:hover .cta-button-textgroup	{fill: #ffffff;}

/* if you need to define click area */
#bgExitArea { 
	cursor: pointer; 
	left: 0;
	opacity: 0;
	position: absolute;
	z-index: 100;
	/*opacity: .5;*/		/* for testing */
	/*background: red;*/	/* for testing */
}
