

.remote {
  visibility: hidden;
}

.cta-button{
position: absolute;
  z-index: 68;
  top: 10px;
  right: 25px;
  cursor: pointer;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  background-color: #333;
  padding: 3px 16px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  border: none;
  text-decoration: none;
  font-size: calc(16 * 1px);
  }
  
  
  .cta-button:hover,.cta-button:active {
  color: #333;
  background-color: #ffffff;
}


#loadinginfo {
	background:none;
	margin-top: 0;
  margin-left: 0;
  border-radius: 0;
  animation: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://rockrow.navadise-vr.com/media/logo.png?nh=0.7801728495200811");
  background-repeat: no-repeat;
  background-position: center;
  
  animation: pulse 3s infinite;
  
}

#loadinginfo::before,#loadinginfo::after{
	content: none;
}

@keyframes pulse {
  0%, 100% {
    background-size: 20%;
    opacity:0.1;
  }
  50% {
   background-size: 10%;
    opacity:1;
  }
}