/*para los encabezados de las tablas*/
/*
.table th {
  background-color:#337ab7 !important;
  color: white;
}
*/
/*
.btn-group, .btn-group-vertical{
  position:absolute !important;
}
*/

[data-notify="progressbar"] {
	margin-bottom: 0px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 5px;
}


.toggle-flip input[type="checkbox"] {
	display: none;
  }

  .toggle-flip input[type="checkbox"] + .flip-indecator {
	position: relative;
	width: 60px;
	height: 20px;
	display: block;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
	-webkit-perspective: 90px;
			perspective: 90px;
  }

  .toggle-flip input[type="checkbox"] + .flip-indecator:before, .toggle-flip input[type="checkbox"] + .flip-indecator:after {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 80%;
	line-height: 30px;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	text-align: center;
	border-radius: 3px;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
  }
  
  .toggle-flip input[type="checkbox"] + .flip-indecator:before {
	content: attr(data-toggle-off);
	background-color: #ddd;
  }
  
  .toggle-flip input[type="checkbox"] + .flip-indecator:after {
	content: attr(data-toggle-on);
	background-color: #009688;
	color: #fff;
	-webkit-transform: rotateY(-180deg);
			transform: rotateY(-180deg);
  }
  
  .toggle-flip input[type="checkbox"]:checked + .flip-indecator:before {
	-webkit-transform: rotateY(180deg);
			transform: rotateY(180deg);
  }
  
  .toggle-flip input[type="checkbox"]:checked + .flip-indecator:after {
	-webkit-transform: rotateY(0deg);
			transform: rotateY(0deg);
  }
  
  .toggle-flip input[type="checkbox"]:disabled + .flip-indecator {
	cursor: not-allowed !important;
	color: #ccc;
  }

  