/* sobrescreve a cor das labels */
label {
    color: #000;
}

.form-control::placeholder{
    color: #898989;
}
.table {
    color: #5a5c69;
}

.mensagens{
    color: #565656;
}
select option{
    color: #565656;
}

.pace {
	-webkit-pointer-events: none;
	pointer-events: none;

	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pace-inactive {
	display: none;
}

.pace .pace-progress {
	background: #2f9bda;
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 100%;
	width: 100%;
	height: 2px;
}
/* fim do pace bar===================================== */

/* enquanto estiver carregando, o scroll da página estará desativado */
body.loading {
    overflow: hidden;   
}

/* a partir do momento em que o body estiver com a classe loading,  o modal aparecerá */
body.loading .modal {
    display: block;
} 

.modal{
    background: rgba(0,0,0,0.4)
    url(../img/spinner.gif) 
    /* url('http://i.stack.imgur.com/FhHRx.gif')  */
    50% 50% 
    no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* background: url(../img/spinner.gif)
    50% 50% 
    no-repeat; */
}

/* =============================== */
/* switch toggle incidentes*/
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .2s;
    transition: .2s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 2px;
    /* bottom: 1px; */
    background-color: white;
    -webkit-transition: .3s;
    transition: .3s;
  }
  
  input:checked + .slider {
    background-color: #42ba96;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #42ba96;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
    background-color: #df4759;
    height: 20px;
    width: 50px;
    /* right: 20px; */
  }
  
  span.slider.round:before {
    border-radius: 50%;
    height: 20px;
    width: 20px;
  }
/* =============================== */


