/*class to add for next page blink*/
.nextPageBlink
{
  animation-duration: 1s;
  animation-name: nextPage;
  animation-iteration-count: infinite;
}

@keyframes nextPage {
  0% {
    opacity: 0;
    color:yellow;
  }

  25% {
   opacity: 0.3;
   color:green;
  }

  50% {
   opacity: 0.7;
   color:blue;
  }

   75% {
   opacity: 1;
   color:brown;
  }

   100% {
   opacity: 0.5;
   color:black;
  }
}


/*nextSpeech arrow sign animation we add class .blinkEffect*/

.blinkEffect
{
  animation-duration: 1s;
  animation-name: blink;
  animation-iteration-count: infinite;
}

@keyframes blink {
  from {
    opacity:0;
  }

  to {
   opacity: 1;
  }
}


/*scale the red arrow*/
.scaleArrowRed
{
  animation-duration: 5s;
  animation-name: scaleRed;
  animation-fill-mode: forwards; 
  animation-timing-function: linear;
  animation-iteration-count: 1;

  -webkit-animation-duration: 5s;
  -webkit-animation-name: scaleRed;
  -webkit-animation-fill-mode: forwards; 
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
}

@keyframes scaleRed{
  0% {
     transform:scaleX(0);
	-webkit-transform:scaleX(0);
  }

  100% {
       transform:scaleX(1);
	-webkit-transform:scaleX(1);
     }
}

@-webkit-keyframes scaleRed{
  0% {
     transform:scaleX(0);
	-webkit-transform:scaleX(0);
  }

  100% {
       transform:scaleX(1);
	-webkit-transform:scaleX(1);
     }
}


/*scale the green arrow*/
.scaleArrowGreen
{
  animation-duration: 3s;
  animation-name: scaleGreen;
  animation-fill-mode: forwards; 
  animation-timing-function: linear;
  animation-iteration-count: 1;

  -webkit-animation-duration: 3s;
  -webkit-animation-name: scaleGreen;
  -webkit-animation-fill-mode: forwards; 
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
}

@keyframes scaleGreen{
  0% {
     transform:scaleX(0);
	-webkit-transform:scaleX(0);
  }

  100% {
       transform:scaleX(0.5);
	-webkit-transform:scaleX(0.5);
     }
}

@-webkit-keyframes scaleGreen{
  0% {
     transform:scaleX(0);
	-webkit-transform:scaleX(0);
  }

  100% {
       transform:scaleX(0.5);
	-webkit-transform:scaleX(0.5);
     }
}

/*scale redArrow for gravity div*/

.scaleGravityArrowRed
{
  animation-duration: 6s;
  animation-name: scaleGravityRed;
  animation-fill-mode: forwards; 
  animation-timing-function: linear;
  animation-iteration-count: 1;

  -webkit-animation-duration: 6s;
  -webkit-animation-name: scaleGravityRed;
  -webkit-animation-fill-mode: forwards; 
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
}

@keyframes scaleGravityRed{
  0% {
     transform:scaleY(0);
  -webkit-transform:scaleY(0);
  }

  100% {
       transform:scaleY(1);
  -webkit-transform:scaleY(1);
     }
}

@-webkit-keyframes scaleGravityRed{
  0% {
     transform:scaleY(0);
  -webkit-transform:scaleY(0);
  }

  100% {
       transform:scaleY(1);
  -webkit-transform:scaleY(1);
     }
}

/*scale greenArrow for gravity div*/

.scaleGravityArrowGreen
{
  animation-duration: 4s;
  animation-name: scaleGravityGreen;
  animation-fill-mode: forwards; 
  animation-timing-function: linear;
  animation-iteration-count: 1;

  -webkit-animation-duration: 4s;
  -webkit-animation-name: scaleGravityGreen;
  -webkit-animation-fill-mode: forwards; 
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
}

@keyframes scaleGravityGreen{
  0% {
     transform:scaleY(0);
  -webkit-transform:scaleY(0);
  }

  100% {
       transform:scaleY(1);
  -webkit-transform:scaleY(1);
     }
}

@-webkit-keyframes scaleGravityGreen{
  0% {
     transform:scaleY(0);
  -webkit-transform:scaleY(0);
  }

  100% {
       transform:scaleY(1);
  -webkit-transform:scaleY(1);
     }
}






