.tabela {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 15px;

	background-color: #FFFFFF;
	box-shadow: 2px 2px 4px 2px rgba(0,0,0,0.10);
	border-radius: 5px;

	display: flex;
	flex-direction: column;
	align-items: center;
}

.tabela .tabela_ferramentas {
	width: 100%;
	height: auto;
	margin: 0px 0px 15px 0px;
	padding: 0px;

	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.tabela .tabela_ferramentas > button {
	width: auto;
	height: 35px;
	margin: 0px;
	padding: 0px 15px;

	background-color: var(--preto);
	border: none;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	white-space: nowrap;
	font-weight: 700;
	font-size: 12px;
	color: #FFFFFF;
}

.tabela .tabela_ferramentas > button:first-child {
	border-radius: 5px 0px 0px 5px !important;
}

.tabela .tabela_ferramentas > button:last-child {
	border-radius: 0px 5px 5px 0px !important;
}

.tabela .tabela_ferramentas > button:only-child {
	border-radius: 5px !important;
}

.tabela .tabela_ferramentas > button > svg {
	font-size: 14px;
}

.tabela .tabela_ferramentas > div {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	display: flex;
	flex-direction: column;
	align-items: center;

	position: relative;
}

.tabela .tabela_ferramentas > div > button {
	width: auto;
	height: 35px;
	margin: 0px;
	padding: 0px 15px;

	background-color: var(--preto);
	border: none;

	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;

	white-space: nowrap;
	font-weight: 700;
	font-size: 12px;
	color: #FFFFFF;
}

.tabela .tabela_ferramentas > div > button > svg {
	font-size: 14px;
}

.tabela .tabela_ferramentas > div > span {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	display: flex;
	flex-direction: column;
	align-items: flex-start;

	z-index: 1;
	position: absolute;
	top: 100%;
	left: 0px;

	visibility: hidden;
	opacity: 0;
}

.tabela .tabela_ferramentas > div:hover span {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.25s ease;
	-moz-transition: opacity 0.25s ease;
	-webkit-transition: opacity 0.25s ease;
}

.tabela .tabela_ferramentas > div > span > button {
	width: auto;
	height: 35px;
	margin: 0px;
	padding: 0px 15px;

	background-color: var(--preto);
	border: none;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	white-space: nowrap;
	font-weight: 700;
	font-size: 12px;
	color: #FFFFFF;
}

.tabela .tabela_ferramentas > div > span > button:first-child {
	border-radius: 0px 5px 0px 0px !important;
}

.tabela .tabela_ferramentas > div > span > button:last-child {
	border-radius: 0px 0px 5px 5px !important;
}

.tabela .tabela_ferramentas > div > span > button:only-child {
	border-radius: 5px !important;
}

.tabela .tabela_ferramentas > div > span > button > svg {
	font-size: 14px;
}

.tabela .tabela_filtros {
	width: 100%;
	height: auto;
	margin: 0px 0px 15px 0px;
	padding: 0px;

	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.tabela .tabela_filtros > label {
	width: auto;
	height: 35px;
	margin: 0px;
	padding: 0px 15px;

	cursor: pointer;
	background-color: var(--preto);
	border: none;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	white-space: nowrap;
	font-weight: 700;
	font-size: 12px;
	color: #FFFFFF;
}

.tabela .tabela_filtros > label:first-child {
	border-radius: 5px 0px 0px 5px !important;
}

.tabela .tabela_filtros > label:last-child {
	border-radius: 0px 5px 5px 0px !important;
}

.tabela .tabela_filtros > label:only-child {
	border-radius: 5px !important;
}

.tabela .tabela_lista {
	width: 100%;
	max-width: 100%;
	height: auto;
	min-height: 100vh;
	margin: 0px;
	padding: 0px;

	display: flex;
	flex-direction: column;

	position: relative;
}

.tabela .tabela_lista table {
	width: 100%;
	height: auto;
	margin: 10px 0px;
	padding: 0px;

	border: none !important;
	border-top: 1px solid #DDDDDD !important;
	border-bottom: 1px solid #DDDDDD !important;
}

.tabela .tabela_lista table thead th {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	border: none !important;

	white-space: nowrap;
	text-align: center;
	font-weight: 700;
	font-size: 12px;
	color: #333333;
}

.tabela .tabela_lista table td {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 5px;

	cursor: pointer;
	border-radius: 5px;
	border: none !important;
	border-bottom: 1px solid #DDDDDD !important;

	text-align: center;
	font-weight: 500;
	font-size: 12px;
	color: #333333;
}

.tabela .tabela_lista table tr:last-child td {
	border-bottom: none !important;
}

.tabela .tabela_lista table tr img {
	width: 50px;
	max-width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;

	background-color: #FFFFFF;
	border-radius: 5px;
}

.tabela .tabela_lista table tr h1 {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 5px 15px;

	text-align: center;
	font-weight: 700;
	font-size: 12px;
	color: #333333;
}

.tabela .tabela_lista table td .tabela_dados {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 10px;

	overflow: hidden;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.tabela .tabela_lista table td .tabela_dados.coluna {
	flex-direction: column;
}

.tabela .tabela_lista table td .tabela_dados.linha {
	flex-direction: row;
}

.tabela .tabela_lista table td .tabela_dados.start {
	align-items: flex-start;
}

.tabela .tabela_lista table td .tabela_dados.center {
	align-items: center;
}

.tabela .tabela_lista table td .tabela_dados.end {
	align-items: flex-end;
}

.tabela .tabela_lista table td .tabela_dados:first-child {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.tabela .tabela_lista table td .tabela_dados:last-child {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.tabela .tabela_lista table td .tabela_dados span {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.tabela .tabela_lista table td .tabela_dados span.coluna {
	flex-direction: column;
}

.tabela .tabela_lista table td .tabela_dados span.linha {
	flex-direction: row;
}

.tabela .tabela_lista table td .tabela_dados span.start {
	align-items: flex-start;
}

.tabela .tabela_lista table td .tabela_dados span.center {
	align-items: center;
}

.tabela .tabela_lista table td .tabela_dados span.end {
	align-items: flex-end;
}

.tabela .tabela_lista table td .tabela_dados img {
	width: 75px;
	max-width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;

	background-color: #FFFFFF;
	border-radius: 5px;
	float: left;
}

.tabela .tabela_lista table td .tabela_dados .imagens {
	width: auto;
	height: auto;
	margin: 0px 10px 10px 0px;
	padding: 0px;

	position: relative;
}

.tabela .tabela_lista table td .tabela_dados .imagens img.mini {
	width: 30px;
	max-width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;

	background-color: #FFFFFF;
	border: 3px solid #FFFFFF;
	border-radius: 5px;

	position: absolute;
	bottom: 0px;
	right: 0px;
}

.tabela .tabela_lista table td .tabela_dados h1 {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	text-align: start;
	font-weight: 700;
	font-size: 14px;
	color: #333333;
}

.tabela .tabela_lista table td .tabela_dados h2 {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	text-align: start;
	font-weight: 500;
	font-size: 12px;
	color: #333333;
}

.tabela .tabela_lista table td .tabela_dados p {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	text-align: start;
	font-weight: 500;
	font-size: 12px;
	color: #333333;

	clear: both;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tabela .tabela_lista table td .tabela_dados small {
	width: auto;
	height: auto;
	margin: 2.5px 0px;
	padding: 5px 10px;

	border-radius: 5px;

	text-align: start;
	font-weight: 700;
	font-size: 12px;
	color: #333333;
}

.tabela .tabela_lista table td .tabela_dados p.visualizar {
    display: block;
    -webkit-box-orient: inherit;
    -webkit-line-clamp: inherit;
    overflow: visible;
    text-overflow: clip;
}

.tabela .tabela_lista table td .tabela_dados p.data {
	font-style: italic;
	font-size: 10px;
}

.tabela .tabela_lista table td .tabela_botoes {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 10px;

	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;

	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
}

.tabela .tabela_lista table td .tabela_botoes > button {
	width: 30px;
	height: 30px;
	margin: 0px;
	padding: 0px;

	background-color: #333333;
	border: none;
	border-radius: 5px;

	display: flex;
	align-items: center;
	justify-content: center;

	white-space: nowrap;
	font-weight: 700;
	font-size: 12px;
	color: #FFFFFF;
}

.tabela .tabela_lista table td .tabela_botoes > button > svg {
	font-size: 12px;
}

.tabela .tabela_lista .naovisualizado td {
	background-color: rgba(250,208,208,1.00);
}

@keyframes piscar {
    0%, 100% {
        background-color: rgba(246,176,176,1.00);
    }
    50% {
       	background-color: rgba(250,208,208,1.00);
    }
}

.tabela .tabela_lista .piscar td {
    animation: piscar 1s infinite;
}

.dataTables_length > label {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;

	display: flex;
	align-items: center;
	justify-content: flex-start;

	text-align: start;
	font-weight: 500;
	font-size: 12px;
	color: #333333;
}

.dataTables_length > label > select {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px 10px;

	cursor: pointer;
	background-color: transparent;
	outline: none;
	border: none;

	text-align: center;
	font-weight: 700;
	font-size: 12px;
	color: #333333;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
 }

.dataTables_length > label > select::-ms-expand {
	display: none;
}
.dataTables_info {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 15px 0px;

	text-align: start;
	font-weight: 500;
	font-size: 12px;
	color: #333333;
}

.dataTables_paginate {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	display: flex;
	align-items: center;
}

.dataTables_paginate > span {
	width: auto;
	padding: 0px 15px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.paginate_button {
	width: auto;
	height: 35px;
	margin: 0px;
	padding: 0px 15px;

	background-color: transparent;
	border-radius: 0px;

	display: flex;
	align-items: center;
	justify-content: center;

	text-align: center;
	font-weight: 500;
	font-size: 12px;
	color: #333333;
}

.first, .previous, .next, .last {
	background-color: #333333;

	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	color: #FFFFFF;
}

.first {
	border-radius: 5px 0px 0px 5px;
}

.last {
	border-radius: 0px 5px 5px 0px;
}

.current {
	font-weight: 700;
	font-size: 16px;
}

.tabela .tabela_lista .carregando {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;

	background-color: #FFFFFF;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;

	z-index: 89999;
	position: absolute;
	top: 0px;
	left: 0px;
}

.tabela .tabela_lista .carregando > h1 {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	font-size: 36px;
	color: #333333;
}

.tabela .tabela_lista .carregando > p {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;

	text-align: center;
	font-weight: 700;
	font-size: 12px;
	color: #333333;
}

@media only screen and (max-width: 449px) {

	.dataTables_paginate {
		width: 100%;

		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.dataTables_paginate > span {
		display: none;
	}

	.paginate_button {
		width: 100%;
	}

}

@media only screen and (min-width: 750px) {

	.tabela .um		{ width: 10% !important; }
	.tabela .dois	{ width: 20% !important; }
	.tabela .tres	{ width: 30% !important; }
	.tabela .quatro	{ width: 40% !important; }
	.tabela .cinco	{ width: 50% !important; }
	.tabela .seis	{ width: 60% !important; }
	.tabela .sete	{ width: 70% !important; }
	.tabela .oito	{ width: 80% !important; }
	.tabela .nove	{ width: 90% !important; }
	.tabela .dez	{ width: 100% !important; }

}