#contenedorloader {
  position: fixed;
	left: 0px;
	top: 0px;
	z-index: 9999;
  opacity: 0.7;
  background: #000;
  width: 100%;
  height: 100%;
    
}
#contenedorselectbox {
   position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
    
}
.loader {
  font-size: 10px;
  margin: 20% auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #09F;
  background: -moz-linear-gradient(left, #09F 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #09F 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #09F 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #09F 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #09F 10%, rgba(255, 255, 255, 0) 42%);
  position: absolute
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
}
.loader:before {
  width: 50%;
  height: 50%;
  background: #FFF;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.loader:after {
  background: #000;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.container-text-loader {
  margin-top: -250px;
}
.text-loader{
  color:#FFF;
}