	/* ini: Preloader */
	 
	#preloader {
		position:fixed;
		top:0;
		left:0;
		right:0;
		bottom:0;
		opacity: 0.5;
		background-color:#fff; /* cor do background que vai ocupar o body */
		z-index:9999; /* z-index para jogar para frente e sobrepor tudo */
	}
	#preloader .inner {
		position: absolute;
		top: 50%; /* centralizar a parte interna do preload (onde fica a animação)*/
		left: 50%;
		transform: translate(-50%, -50%);  
	}
	.bolas > div {
	  display: inline-block;
	  background-color: #F27620;
	  width: 25px;
	  height: 25px;
	  border-radius: 100%;
	  margin: 3px;
	  -webkit-animation-fill-mode: both;
	  animation-fill-mode: both;
	  animation-name: animarBola;
	  animation-timing-function: linear;
	  animation-iteration-count: infinite;
	   
	}
	.bolas > div:nth-child(1) {
		animation-duration:0.75s ;
		animation-delay: 0;
	}
	.bolas > div:nth-child(2) {
		animation-duration: 0.75s ;
		animation-delay: 0.12s;
	}
	.bolas > div:nth-child(3) {
		animation-duration: 0.75s  ;
		animation-delay: 0.24s;
	}
	 
	@keyframes animarBola {
	  0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	  }
	  16% {
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
		opacity: 0.7;
	  }
	  33% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1; 
	  } 
	}
	
	
	/*LINHA RISCADA PEDIDO */
	td { position: relative; }

	tr.strikeout td:before {
	  content: " ";
	  position: absolute;
	  top: 50%;
	  left: 0;
	  border-bottom: 1px solid #111;
	  width: 100%;
	}

	tr.strikeout td:after {
	  content: "\00B7";
	  font-size: 1px;
	}
	table { page-break-inside:auto }
	tr{page-break-inside:avoid; page-break-after:auto }    
	thead { display:table-header-group }    
	tfoot { display:table-footer-group }	

	.floating-btn {
		position: fixed;
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
		background-color: #007bff;
		color: #fff;
		border-radius: 50%;
		text-align: center;
		font-size: 24px;
		border: none;
		cursor: pointer;
		z-index: 999;
	}

	.floating-btn:hover {
		background-color: #0056b3;
	}