.hide{display: none !important;}
.avisos{width:100%; height:auto; background-color: rgba(92, 184, 92, 0.4); padding:11px; font-size:14px; font-weight:300; border-radius:3px; color:#0f5132}


@keyframes example {
    0%   {bottom: 20px;}
    25%  {bottom: 40px;}
    50%  {bottom: 20px;}
    75%  {bottom: 40px;}
    100% {bottom: 20px;}
}	

.whatsapp {
  background-color: #4dc247; height: 50px; width: 50px; position: fixed; right: 20px; bottom: 20px; border-radius: 50%; font-size: 28px; box-shadow: 2px 2px 6px rgba(0,0,0,0.4); line-height: 51px; color: #FFF; text-align: center;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite; z-index: 99999;
}



/* ==============
  Loader
===================*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4F3AC9;
  z-index: 9999999;
}

#status {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -40px 0 0 -30px;
}

.spinner {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 50%;
  margin-left: -10px;
  margin-top: 10px;
  background-image: url("../img/logo-header.svg"); 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
 
}

.spinner:before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px; 
  top: 50%;
  margin-top: -55px;
  left: 50%;
  margin-left: -50px;
  border-width: 2px 1px;
  border-style: solid;
  border-color: #88D040 rgba(255, 255, 255, .5);
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  animation: spin 3.45s infinite;
  -o-animation: spin 3.45s infinite;
  -ms-animation: spin 3.45s infinite;
  -webkit-animation: spin 3.45s infinite;
  -moz-animation: spin 3.45s infinite;  
  
}

.spinner:after {
 animation: loaderx .9s infinite, loaderx .9s infinite;
 
}



@keyframes loaderx {
  0% {
   opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes loaderx {
  0% {
   opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(1080deg);
            transform: rotate(1080deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(1080deg);
  }
}

