
#stickynav {
  
}

#top, #bottom, #left, #right {
	background: #fff;
	position: fixed;
    z-index: 999;
	}
	#left, #right {
		top: 0; bottom: 0;
		width: 20px;
		}
		#left { left: 0; }
		#right { right: 0; }
		
	#top, #bottom {
		left: 0; right: 0;
		height: 20px;
		}
		#top { top: 0; }
		#bottom { bottom: 0; }




@media (max-width:920px)
{
    body{
        text-align: center;
    }
    
}

@media (min-width:920px)
{
    .btn-download {
        position: fixed;
        top: 50px;
        right:50px;
        z-index: 998;
        font-size: 11px;
    }
    
    .contact-details {
        text-align: right;
        position: fixed;
        top: 350px;
        left:50px;
        z-index: 998; 
        line-height: 17px;
    }
    
    
}

.spinner1 {
  width: 40px;
  height: 40px;
  position: relative;
}


.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: bounce 2.0s infinite ease-in-out;
  animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}