/* CSS Audiobook by Pete Casale - www.cre8veonline.com */

.background, html, body {
height:100%;
}

.background {
background-size:cover;
background-position:center center;
position:relative;
}

.textarea {
position:absolute;
bottom:0;
left:0;
width:100%;
padding-top:30px;
padding-bottom:30px;
}


.light {
background: rgba(255, 255, 255, 0.3);
color:#000;
text-shadow:0px 0px 2px #fff;
}

.dark {
background: rgba(0, 0, 0, 0.3);
color:#fff;
text-shadow:0px 0px 2px #000000;
}

.whitefont {
color:#000;
text-shadow:0px 0px 16px #ffffff;
}


.whitefont {
color:#fff;
text-shadow:0px 0px 2px #000000;
}

.bluefont {
color:#0e73ad;
text-shadow:0px 0px 8px #000000;
}

span.glyphicon-circle-arrow-right {
position:absolute;
top:30px;
right:30px;
}

span.glyphicon-circle-arrow-left,
span.glyphicon-home {
position:absolute;
top:30px;
left:30px;
}


.menubtn {
position:absolute;
top:80px;
left:30px;
font-size: 1em;
color:#fff;
}

.nextbtn {
position:absolute;
top:80px;
right:30px;
font-size: 1em;
color:#fff;
}

span.glyphicon-circle-arrow-right, span.glyphicon-circle-arrow-left,
span.glyphicon-home {
font-size: 3em;
color:#fff;
}

span.glyphicon-circle-arrow-right:focus, span.glyphicon-circle-arrow-left:focus, span.glyphicon-circle-arrow-right:hover, span.glyphicon-circle-arrow-left:hover{
opacity: 1;
}

#dummy:hover {
cursor: pointer;
}

.circlebtn {
text-shadow: 0px 0px 8px rgba(0, 0, 0, 1);
}


.circlebtn{
  animation: anim ease-out .5s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: anim ease-out .5s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
  -moz-animation: anim ease-out .5s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: anim ease-out .5s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: anim ease-out .5s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes anim{
  0% {
    opacity:1;
    transform:  scaleX(2.00) scaleY(2.00) ;
	font-size: 200%;
  }
  100% {
    opacity:0.4;
    transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
}

@-moz-keyframes anim{
  0% {
    opacity:1;
    -moz-transform:  scaleX(2.00) scaleY(2.00) ;
	font-size: 200%;
  }
  100% {
    opacity:0.4;
    -moz-transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
}

@-webkit-keyframes anim {
  0% {
    opacity:1;
    -webkit-transform:  scaleX(2.00) scaleY(2.00) ;
	font-size: 200%;
  }
  100% {
    opacity:0.4;
    -webkit-transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
}

@-o-keyframes anim {
  0% {
    opacity:1;
    -o-transform:  scaleX(2.00) scaleY(2.00) ;
	font-size: 200%;
  }
  100% {
    opacity:0.4;
    -o-transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
}

@-ms-keyframes anim {
  0% {
    opacity:1;
    -ms-transform:  scaleX(2.00) scaleY(2.00) ;
	font-size: 200%;
  }
  100% {
    opacity:0.4;
    -ms-transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
}


.page1 .circlebtn{
  animation: animp1 ease-out 6s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: animp1 ease-out 6s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animp1 ease-out 6s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: animp1 ease-out 6s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: animp1 ease-out 6s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes animp1{
  0% {
    opacity:1;
    transform:  scaleX(2.00) scaleY(2.00) ;
	font-size: 200%;
  }
  22% {
    opacity:0.9;
    transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
  100% {
    opacity:0.4;
    transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
}

@-moz-keyframes animp1{
  0% {
    opacity:1;
    -moz-transform:  scaleX(2.00) scaleY(2.00) ;
	font-size: 200%;
  }
  22% {
    opacity:0.9;
    -moz-transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
  100% {
    opacity:0.4;
    -moz-transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
}

@-webkit-keyframes animp1 {
  0% {
    opacity:1;
    -webkit-transform:  scaleX(2.00) scaleY(2.00) ;
	font-size: 200%;
  }
  22% {
    opacity:0.9;
    -webkit-transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
  100% {
    opacity:0.4;
    -webkit-transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
}

@-o-keyframes animp1 {
  0% {
    opacity:1;
    -o-transform:  scaleX(2.00) scaleY(2.00) ;
	font-size: 200%;
  }
  22% {
    opacity:0.9;
    -o-transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
  100% {
    opacity:0.4;
    -o-transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
}

@-ms-keyframes animp1 {
  0% {
    opacity:1;
    -ms-transform:  scaleX(2.00) scaleY(2.00) ;
	font-size: 200%;
  }
  22% {
    opacity:0.9;
    -ms-transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
  100% {
    opacity:0.4;
    -ms-transform:  scaleX(1.00) scaleY(1.00) ;
	font-size: 100%;
  }
}


/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {



}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {


}