
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: 600px;/*100%;*/
	left: 0px;
	background-color: #ffffff;
	overflow: hidden;
	position: absolute;
	top: 0px;
	width: 300px;/*100%;*/
	z-index: 124;
	cursor: url("coin.png") 14 45, auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	#ad {
		cursor: pointer, auto;
	}
}
#ad:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	border: black 1px solid;
	pointer-events: none;
	z-index: 125;
}
a {
	cursor: pointer;
}
#logo {
	height: 25px;
	position: absolute;
	top: 25px;
	width: 130px;
	left: 50%;
	transform: translateX(-50%);
}
#prog-logo{
	position: absolute;
	fill:#ffffff;
	z-index: 115;
}

#logo-outline {
	position: absolute;
	top: -2px;
	transform: scale(1.05);
	z-index: 114;
}

#direct-tag {
	display: visible;  /*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  --------------------------------------------------------  */


.box {
	display: inline-block;
	background: url("bg.jpg");
	background-size: cover;
	z-index: 109;
}

canvas[id=canvas] {
	background: transparent;
	position: absolute;
	bottom: 200px;
	left: 50%;
  transform: translateX(-50%);
}
canvas[id=flakes] {
	background: transparent;
	position: absolute;
	bottom: 200px;
	left: 50%;
  transform: translateX(-50%);
  /* pointer-events: none; */
}

canvas[id=newComp] {
	background: transparent;
	position: absolute;
	bottom: 200px;
	left: 50%;
  transform: translateX(-50%);
}

.mount {
  position: absolute;
  width: 0;
  height: 0;
  -webkit-transform: translate(18px, 225px);
  transform: translate(18px, 225px);
  pointer-events: none;
  z-index: 1119;
}

#fetArea{
  z-index: 1119;
}






.waiting #coin {
	position: absolute;
	opacity: 1;
	z-index: 121;
	top: 230px;
	left: 85px;
}

.waiting #coin.move {
	-webkit-animation: coin-ani .6s 25;
	        animation: coin-ani .6s 25;
}

#coin.out {
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

#coin.none {
	display: none;
}

@-webkit-keyframes coin-ani {
	0%   { -webkit-transform: translateX(0); transform: translateX(0); }
	50%  { -webkit-transform: translateX(-20px); transform: translateX(px); }
	100% { -webkit-transform: translateX(0); transform: translateX(0); }
  }

@keyframes coin-ani {
	0%   { -webkit-transform: translateX(0); transform: translateX(0); }
	50%  { -webkit-transform: translateX(-20px); transform: translateX(-20px); }
	100% { -webkit-transform: translateX(0); transform: translateX(0); }
  }


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

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

#cta {
	bottom: 35px;
	height: 36px;
	left: 0;
	width: 100%;
	z-index: 110;
}
.button {
	width: 134px;
}
#cta-button, #cta-button > * {
	transition: all .3s ease-in-out;
}
.cta-button-bg			{fill:#ff8a39;}
.cta-button-textgroup	{fill:#ffffff;}

/* hover effects for button */
#cta-button:hover {
	 transform: scale(1.05); 
}

#cta-button:hover .cta-button-bg 		{fill: #d3732e;}
#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 */
}
