body{
	background: #eee url(/img/backgrounds/baldosa.png);
}
html,body{
	position: relative;
	height: 100%;
}

.loader {
	border: 0.2em solid #b6b7b7; /* Light grey */
	border-top: 0.2em solid #0d4db5; /* Blue */
	border-radius: 50%;
	width: 2em;
	height: 2em;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


/**
* CSS DE LOS SLIDER SWITCHS
*/
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 3em;
  height: 1.3em;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--danger);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1em;
  width: 1em;
  left: 0.35em;
  bottom: 0.2em;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--green);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--green);
}

input:checked + .slider:before {
  -webkit-transform: translateX(1.3em);
  -ms-transform: translateX(1.3em);
  transform: translateX(1.3em);
}

/* Rounded sliders */
.slider.round {
  border-radius: 1em;
}

.slider.round:before {
  border-radius: 50%;
}

/**
* / CSS DE LOS SLIDER SWITCHS
*/


/* width */
::-webkit-scrollbar {
	width: 0.7em;
	height: 0.7em;
}

/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 0.2em var(--light-gray); 
	border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--primary); 
	border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--primary-light); 
}




/** CSS DE BOTONES PARA FICHERO */
  .btn-file {
	  position: relative;
	  overflow: hidden;
  }
  .btn-file input[type=file] {
	  position: absolute;
	  top: 0;
	  right: 0;
	  min-width: 100%;
	  min-height: 100%;
	  font-size: 100px;
	  text-align: right;
	  filter: alpha(opacity=0);
	  opacity: 0;
	  outline: none;
	  background: white;
	  cursor: inherit;
	  display: block;
  }
/** / CSS DE BOTONES PARA FICHERO */


select.transparent-input, input.transparent-input{
   background-color:transparent !important;
   border:none !important;
}



.bounce {
	animation: fa-bounce 0.25s infinite alternate;
	-webkit-animation: fa-bounce 0.25s infinite alternate;
}
@keyframes fa-bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-5px);
	}
}
@-webkit-keyframes fa-bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-5px);
	}
}

/**
* CSS DE LAS BARRAS DE PROGRESO
*/
	.progressbar {
		font-weight:700;
	}
	.progressbar .alert-warning {
		text-align: center;
	}
	.progresslabel {
		height:1.8rem;
		width: 7rem;
		float:left;
		margin-right: 5px;
	}
	.progress {
		height:1.8rem;
		font-size:0.95rem;
		/*width:80%;
		float:left;*/
	}
	
	.transparent-bg {
		background-color:rgba(255, 255, 255, 0.5);
	}