@font-face {
  font-family: urbanist;
  src: url(./webfonts/Urbanist-Regular.woff);
}

body {
    background: #171727;
    overflow: hidden;
}
#canvas1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  
/*     filter:url(#goo); */
}

#background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#title {
    position: absolute;
    width: 30%;
    height: 30%;
    top: 4%;
    left: 2%;
    z-index: 2;
}

#content {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
}


#play-btn {
  opacity: 0;
	width: 110px;
	height: 110px;
  position: absolute;
  border: none;
	padding: 25px 15px 25px 45px;
	border-radius: 100%;
	background: none;
  z-index: 10;
  animation: pulse 3s infinite;
  outline:none;
  left: 50%;
  top: 50%;
}

#play-btn img{

  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  outline:none;
  opacity: 0.8;
}

.center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@-webkit-keyframes run {
  0% {
    left: 38%;
  }
  50% {
    left: 40%;
  }
  100% {
    left: 38%;    
  }
}

.pointerData img{
  position: absolute;
  left: 40%;
  top: 62%;
  width: 70px;
  height: auto;
  transform: translate(-50%, -50%);
  -webkit-animation: linear infinite;
  -webkit-animation-name: run;
  -webkit-animation-duration: 1s
}


@-webkit-keyframes blur {
  0%, 100%  { -webkit-filter: blur(0px); }
  50% { -webkit-filter: blur(10px); }
}

.info {
  z-index: 10;
  position: absolute;
  top: 2%;
  right: 2%;
  font-size: 30px;
  width: 30px;
  border-radius: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(169, 136, 140, 0.3);
  }
  70% {
      -webkit-box-shadow: 0 0 0 100px rgba(169, 136, 140, 0.0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(169, 136, 140, 0.0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(169, 136, 140, 0.3);
    box-shadow: 0 0 0 0 rgba(169, 136, 140, 0.3);
  }
  70% {
      -moz-box-shadow: 0 0 0 100px rgba(169, 136, 140, 0.0);
      box-shadow: 0 0 0 100px rgba(169, 136, 140, 0.0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(169, 136, 140, 0);
      box-shadow: 0 0 0 0 rgba(169, 136, 140, 0);
  }
}



#instructionsPrompt2{
  width: 30%;
  bottom: 1%;
  right: 2%;
  opacity: 0;

  /*transform: translate(0%, -50%);*/
}


.text{
  z-index: 10;
  font-size: 1em;

  position: absolute;
  text-align: center;
  font-family: 'urbanist';
  font-weight: 400;
  color: rgba(255,255,255, 0.5);

  -webkit-transition: color 2s ease-out;
  -moz-transition: color 2s ease-out;
  -o-transition: color 2s ease-out;
  transition: color 2s ease-out;
}

#instructionsPrompt{
  bottom: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  font-size: 2em;
  
}

#enterFull{
  bottom: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2em;
}


#fullScreenPrompt{
  bottom: 1%;
  left: 2%;
  /*transform: translate(0%, -50%);*/

}

#cpVideo{
  z-index: 10;
  border-radius: 50%;
}


 .rc{
   z-index: 10;
   width: 0px;
   height: 0px;
   /*border-radius: 100%;*/
   mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
   -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
   -webkit-transform: rotate(0.000001deg); 
   -webkit-border-radius: 100%; 
   -moz-border-radius: 100%;
   position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}





/*loader*/
.sk-chase {
  z-index: 10;
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; 
  animation: sk-chase-dot 2.0s infinite ease-in-out both; 
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both; 
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
  100% { transform: rotate(360deg); } 
}

@keyframes sk-chase-dot {
  80%, 100% { transform: rotate(360deg); } 
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4); 
  } 100%, 0% {
    transform: scale(1.0); 
  } 
}

.loader{
  opacity: 0;
  z-index: 100;
  top: 71%;
}