@charset "utf-8";
/* CSS Document */
/* Media Query */
body{
	background-color: #FFF;
	color:#000;
}
body,td,th,.btn,.form-control-sm{
	font-size: 0.85rem;
}
@media (max-width: 992px) {
	body,td,th,.btn,.form-control-sm{
		font-size: 0.7rem;
	}
}
@media (max-width: 575px) {
	h3{
		font-size: 0.9rem;
	}
}
/*@media (min-width: 576px) {
	th,td{
		font-size: 0.8rem;
	}
}
@media (min-width: 768px) {
	th,td{
		font-size: 0.85rem;
	}
}
@media (min-width: 992px) {
	th,td{
		font-size: 0.9rem;
	}
}*/
/* fim Media Query */

/*Configurações gerais*/
a{
	color: inherit !important;
	cursor: pointer;
	text-decoration:none !important;
}
label{
	font-weight: bold;	
}
thead th{
	text-align:center;
}

td{
	vertical-align: middle!important;
}
i{
	font-size: 1.3rem;
}

.error{
	background-color:#ff9797;	
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(100,100,100,0.3); 
    border-radius: 6px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 6px rgba(100,100,100,0.5); 
}

.jquery-waiting-base-container {
	position: fixed;
	left: 0px;
	top:0px;
	margin:0px;
	width: 100%;
	height: 100%;
	display:block;
	z-index: 9000000;
	opacity: 0.85;
	-moz-opacity: 0.85;
	filter: alpha(opacity = 85);
	background: #FFF;
	background-image: url("../img/loading.gif");
	background-repeat: no-repeat;
	background-position:50% 50%;
	text-align: center;
	overflow: hidden;
	font-weight: bold;
	color: #000;
	padding-top: 20%;
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: #EFEFEF;
		color: #000;
	}
	.card-body{
		background-color: #EFEFEF;
		color: #000;
	}
	thead tr th{
		background-color: #CCC;
	}
}