/**
 * 
 * @author Richard Cardoso (richard.166@hotmail.com)
 */

html {
	overflow: hidden;
}

.alert-auto {
	display:inline-block;
}

.faLoader {
	position: absolute;
	margin-left:-50px;
	margin-top:-50px;
}

* {
	transition: opacity 0.25s ease-in;
}l

#body-content.invisible {
	visibility: hidden;
	opacity: 0;
}

.visible {
	visibility: visible;
    opacity: 1;
}

.waitLogoContainer {
	width:100%;
	height:100vh;
}

.logoRecipient {
	-webkit-animation: rotation 1.5s infinite linear;
}

td.text-wrap {
    white-space:normal;
}

@-webkit-keyframes rotation {
		50% {
			-webkit-transform: rotateY(.5turn);
		}
		100% {
			-webkit-transform: rotateY(1turn);
		}
}

@media screen {
	div#preloader {
		position: absolute;
		left: -9999px;
		top:  -9999px;
		}
	div#preloader img {
		display: block;
		}
	}
@media print {
	div#preloader, 
	div#preloader img {
		visibility: hidden;
		display: none;
		}
	}

.row {
	white-space: nowrap;
}

.inner-table *:not([type=button]) {
	padding-top: 1px;
	padding-bottom: 1px;
	margin-bottom: 0px;
	
}

.inner-table tr td {
	background-color: transparent;
}

.inner-table td {
	display: table-cell;
	vertical-align: middle;
}

input.transparent-input {
	background-color: transparent !important;
	border: none !important;
}

table.compact td, table.compact div {
	padding-top: 2px;
	padding-bottom: 2px;
	margin-bottom: 0px;
}

table.compact td {
	vertical-align:middle;
}

table.compact thead th {
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	text-align:center;
}

table.wrap {
	white-space: nowrap;
}

.wrap {
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}

textarea.textarea-autosize.form-control-lg {
  height: 3.75rem;
  min-height: 3.75rem;
}

textarea.textarea-autosize.form-control-sm {
  height: 2rem;
  min-height: 2rem;
}

textarea.textarea-autosize {
  height: 2.25rem;
  min-height: 2.25rem;
  resize: none;
  overflow-y:hidden;
}

.noselect, .sortable * {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

.pointer * {
    cursor: pointer;
}

.hidden, .hide {
  display: none !important;
}

.dataTable > thead > tr > td[class*="sorting"] {
    background-image: none;
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	color: black;
}

.select2-drop li {
  white-space: pre-line;
}

table.dataTable td {
  white-space: normal !important; /* permite quebra de linha */
  word-wrap: break-word;          /* quebra no meio da palavra se necessário */
  vertical-align: top;            /* opcional: alinha no topo */
}

.d-flex {
  white-space: normal !important;
}

.spinner-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.6);
	border-radius: inherit;
	z-index: 10;
}

/* Remove os botões de incremento/decremento */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}