.lds-ring {
	/*   display: inline-block; */
	position: relative;
	/*   width: 10px; */
	height: 10px;
	top: -5px;
	left: -4px;
}

.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	/*   transform: translateY(42px); */
	/*   margin: 8px; */
	border: 4px solid #fff;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}

@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}



/* TABLE CLIENTES */
.blur-text {
	/* Adicionando efeito de desfoque ao texto */
	filter: blur(3px);
	transition: filter 0.3s;
	/* Suavizar a transição de desfoque */
}

.blur-text:hover {
	/* Removendo o desfoque quando o mouse passa por cima */
	filter: blur(0);
}



/* TOOLTIP */
.tooltip-container {
	position: relative;
	/* display: inline-block; */
}

.pointer {
	cursor: pointer;
}

.custom-tooltip {
	position: absolute;
	bottom: 100%;
	/* Posiciona acima do elemento alvo */
	left: 50%;
	/* Centraliza o tooltip */
	transform: translateX(-50%);
	/* Ajuste fino para centralização */
	background-color: black;
	color: white;
	padding: 10px 15px;
	width: auto;
	border-radius: 5px;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s;
}


.custom-tooltip-2 {
	position: absolute;
	top: 50%;
	/* Posiciona acima do elemento alvo */
	left: -10px;
	/* Centraliza o tooltip */
	transform: translate(-100%, -50%);
	/* Ajuste fine para posicionar no topo
	/* Ajuste fino para centralização */
	background-color: black;
	color: white;
	padding: 10px;
	/* max-width: 500px; */
	width: 300px;
	/* min-width: 200px; */
	border-radius: 4px;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 9999;
	/* overflow-wrap: anywhere; */
	white-space: normal;
	word-wrap: break-word;
	/* overflow-wrap: break-word; */
}


.tooltip-container:hover .custom-tooltip-2,
.tooltip-container:hover .custom-tooltip {
	visibility: visible;
	opacity: 1;
	/* background-color: rgba(0, 0, 0, 0.2); */
}

/* Estilizando a seta do tooltip */
.custom-tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	/* Posiciona na base do tooltip */
	left: 50%;
	/* Centraliza a seta */
	transform: translateX(-50%);
	border-width: 5px;
	border-style: solid;
	border-color: black transparent transparent transparent;
	/* Seta preta */
}




/* LOADING 2 */

.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 15px;
}

.lds-ellipsis div {
	position: absolute;
	top: -5px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--loading-points);
	/* animation-timing-function: cubic-bezier(1, 1, 1, 1); */
}

.lds-ellipsis div:nth-child(1) {
	left: 0px;
	animation: lds-ellipsis1 1.5s linear infinite;
}

.lds-ellipsis div:nth-child(2) {
	left: 0px;
	animation: lds-ellipsis2 1.5s linear infinite;
}

.lds-ellipsis div:nth-child(3) {
	left: 10px;
	animation: lds-ellipsis2 1.5s linear infinite;
}

.lds-ellipsis div:nth-child(4) {
	left: 20px;
	animation: lds-ellipsis3 1.5s linear infinite;
}

@keyframes lds-ellipsis1 {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(0);
	}
}

@keyframes lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(10px, 0);
	}
}


/* BUTTONS */

.btn-eye {
	width: 0rem;
	height: 0rem;
	/* font-size: 0.95rem; */
	flex-shrink: 0;
	padding-top: 8px;
	padding-left: 10px;
	padding-right: 23px;
	padding-bottom: 25px;
}

.btn-eye>i {
	/*! IMPORTATE POIS SEM ISSO O BOTÂO DE VER CLIENTE PODE NÂO FUNCIONAR */
	pointer-events: none !important;
}

.container-fluid {
	position: relative;
	/* max-height: 100%;
	height: 90vh; */

}

.my-container-fluid {
	position: relative;
	padding: 30px;
	background-color: #E6E6F8;
	overflow-y: auto;
	height: 100%;
	border-bottom-left-radius: 20px;
	flex-grow: 1;
	/* Permite que o conteúdo cresça dentro do espaço disponível */
	overflow: auto;
	/* Habilita o scroll quando necessário */
}






/* JSON */


/* Estilos para a tabela */
.json-table {
	width: 100%;
	border-collapse: collapse;
}

.json-table th,
.json-table td {
	border: 1px solid #797979;
	padding: 8px;
}

.json-table th {
	color: white;
	background-color: var(--loading-points);
	text-align: left;
}

.highlight {
	/* background-color: var(--loading-points); */
	background-color: #845adf;
	color: white;
}



/* MODAL DO CLIENTE */

#show-client-name {
	text-transform: uppercase;
}

#show-client-data {
	position: absolute;
	width: calc(100% - 15rem);
	height: 80vh;
	left: 15rem;
	top: 4rem;
}

.modal {
	z-index: 79;
}

.my-modal-content {
	background-color: white;
	height: 100%;

}

.my-modal {
	width: 100%;
	max-width: none;
	height: 100%;
	margin: 0;
}

.my-modal .modal-content {
	height: 100%;
	border: 0;
	border-radius: 0;
}

.my-modal .modal-header,
.my-modal .modal-footer {
	border-radius: 0;
}

.my-modal .modal-body {
	overflow-y: auto;
}


.scroll-container {
	overflow-y: auto;
	max-height: 400px;
	/* Ajuste conforme necessário */
	display: block;
}



/* SESSÕES */
.single-session {
	width: 100%;
}

.session-title {
	font-size: 1.3rem;
	font-weight: 600;
}

.session-subtitle {
	/* margin-top: -10px; */
	margin-left: 1px;
	font-weight: 400;
	margin-bottom: 20px;
	font-size: 1rem;
	color: #7F7D97;
}

.session-in-line {
	display: flex;
}

.margin-top {
	margin-top: 30px;
}

.margin-bottom-s {
	margin-bottom: 10px;
}

/* .session-content{
	display: flex;
	gap: 20px;
} */








.spinner {
	border: 4px solid rgba(0, 0, 0, 0.1);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border-left-color: #9446E0;
	animation: spin 1s ease infinite;
}

#sessions>div:first-child {
	/* Estilos aqui serão aplicados apenas à primeira div filha de #sessions */
	display: flex;
	align-items: center;
	height: 100% !important;
}

.toast2 {
	display: none;
	/* Inicia escondido */
	position: fixed;
	/* Fixa na tela */
	top: 30px;
	/* Espaço do topo */
	left: 50%;
	/* Centraliza na tela */
	transform: translateX(-50%);
	/* Ajusta a centralização */
	background-color: #333;
	/* Cor de fundo */
	color: white;
	/* Cor do texto */
	padding: 16px;
	/* Espaçamento interno */
	border-radius: 4px;
	/* Bordas arredondadas */
	z-index: 1000;
	/* Garante que fique acima de outros elementos */
}

/* Animação do fade out */
.fadeOut {
	animation: fadeOut 0.5s;
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}




.input-button {
	display: flex;
	flex-direction: row;
	position: relative;
	height: 44px;
	color: white;
	border-radius: 12px;
	background-color: #E6E6F8;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);

}

.input-button>input {
	border-radius: 12px;
	outline: none;
	border: none;
	background-color: transparent;
}

.input-button>input:focus {
	background-color: #f2f2fc;
}

.input-button>button {
	/* margin:8px; */
	position: absolute;
	right: 0;
	height: 80%;
	width: 120px;
	margin-right: 4px;
	top: 50%;
	/* Posiciona o topo do botão no meio do contêiner */
	transform: translateY(-50%);
	/* Desloca o botão para cima pela metade de sua altura, centralizando-o verticalmente */
	background: linear-gradient(to right, #af54ed, #7d4eff);
	outline: none;
	border: none;
	border-radius: 8px;
	font-weight: 500;
	color: white;
	font-family: "Poppins", sans-serif;
	font-size: 0.82rem;
}

.light-point-1 {
	position: absolute;
	width: 1200px;
	height: 1200px;
	top: -10%;
	left: 15%;
	transform: translate(-50%, -50%);
	opacity: 0.2;
	background: radial-gradient(circle 600px, #6732A5, rgb(0, 0, 0, 0));
	z-index: 0;
	filter: blur(50px);
	/* Aplica o efeito de desfoque */
}

.light-point-2 {
	position: absolute;
	width: 1400px;
	height: 1400px;
	top: 115%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.64;
	background: radial-gradient(circle 700px, #3D3AAA, rgb(0, 0, 0, 0));
	z-index: 0;
	filter: blur(50px);
	/* Aplica o efeito de desfoque */
}

.light-point-3 {
	position: absolute;
	width: 1200px;
	height: 1200px;
	top: 8%;
	left: 80%;
	transform: translate(-50%, -50%);
	opacity: 1;
	background: radial-gradient(circle 600px, #1E1E68, rgb(0, 0, 0, 0));
	z-index: 0;
	filter: blur(50px);
	/* Aplica o efeito de desfoque */
}

.app-sidebar .side-menu__item.active::after {
	/* background: red !important; */
	content: '';
	height: 34px;
	width: 20px;
	background-color: #4D40FD;
	position: absolute;
	left: -30px;
}

.button-gradient {
	width: 150px;
	outline: none;
	border: none;
	border-radius: 10px;
	background: linear-gradient(to right, #9446E0, #4940FF);
	color: white;
	font-size: 1.1rem;
	font-family: "Poppins", sans-serif;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}

.button-gradient:hover {
	box-shadow: 0px 0px 3px 0px #4940FF;
}

br,
button {
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Safari */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Chrome e outros navegadores modernos */
}

.button-disabled {
	pointer-events: none;
	opacity: 0.8;
}


.cpf {
	color: #339AF0;
}

.senha_detran {
	color: #f66052;
}


.tag-success {
	background-color: #26bf941a;
	padding: 0 10px;
	color: #3dc253;
}

.negrito {
	font-weight: 600;
}

.color-success {
	color: #3dc253;
}

.color-warning {
	color: #fbaf05;
}

.color-error {
	color: #f66052;
}

.color-info {
	color: #339AF0;
}

.color-erro-cpf {
	color: #fbaf05;
}

.color-senha-errada {
	color: #52b9ad;
}

.color-senha-expirada {
	color: #be52b9;
}

.color-erro-cnh {
	color: #f77a18;
}

.color-erro-consulta {
	color: #f7bc18;
}





.bg-brown-transparent {
	background-color: rgba(118, 15, 18, 0.1) !important;
	color: #760F13 !important;
}

.bg-brown-transparent:hover {
	background-color: rgba(118, 15, 18, 0.1) !important;
	color: #760F13 !important;
}

.bg-brown {
	background-color: rgb(118, 15, 18) !important;
	color: #ffffff !important;
}

.bg-light-blue-transparent {
	background-color: rgba(3, 146, 206, 0.1) !important;
	color: #0392ce !important;
}

.bg-light-blue-transparent:hover {
	background-color: rgba(3, 146, 206, 0.1) !important;
	color: #0392ce !important;
}


.bg-strong-blue-transparent {
	background-color: rgba(2, 100, 254, 0.1) !important;
	color: rgb(2, 100, 254) !important;
}

.bg-strong-blue-transparent:hover {
	background-color: rgba(2, 100, 254, 0.1) !important;
	color: rgb(2, 100, 254) !important;
}






.bg-strong-red-transparent {
	background-color: rgba(255, 0, 0, 0.1) !important;
	color: rgb(255, 0, 0) !important;
}

.bg-strong-red-transparent:hover {
	background-color: rgba(255, 0, 0, 0.1) !important;
	color: rgb(255, 0, 0) !important;
}

.bg-strong-red {
	background-color: rgb(222, 27, 27) !important;
	color: rgb(255, 255, 255) !important;
}

.bg-strong-orange-transparent {
	background-color: rgba(255, 110, 5, 0.1) !important;
	color: rgb(255, 110, 5) !important;
}

.bg-strong-orange-transparent:hover {
	background-color: rgba(255, 110, 5, 0.1) !important;
	color: rgb(255, 110, 5) !important;
}


.bg-strong-orange {
	background-color: rgb(255, 109, 5) !important;
	color: rgb(255, 255, 255) !important;
}


.card-shadow {
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
}

.card-shadow-sm {
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}


/* .list-unstyled li:not(:last-child) {
	border-bottom: 1px solid red !important;
} */

.list-unstyled li:not(:first-child) {
	border-top: 1px solid rgba(0, 0, 0, 0.09) !important;
}

.list-unstyled {
	padding-right: 10px;
}

.item-list-1 {
	padding: 14px 0;
}

.item-list-1:first-child {
	padding-top: 0px;
}

.item-list-1:last-child {
	padding-bottom: 0px;
}

.auto-resize-textarea {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	resize: vertical;
	background-color: white;
	width: 100%;
	height: 179px;
	min-height: 130px;
	max-height: 328px;
	overflow: auto;
	padding: 8px;
	font-size: 15px;
	color: rgb(70, 70, 70);
}

.auto-resize-textarea:focus {
	border: 1px solid rgba(0, 0, 0, 0.3);
	outline: none;
	/* Remove a borda ao ganhar foco */
}


#my-popup-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999999;
	background-color: rgba(0, 0, 0, .0);
	pointer-events: none;
}

.my-popup-empresa {
	position: relative;
	width: 80%;
	height: 75%;
	background: white;
	margin: auto;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 20px;
	padding: 20px;
	pointer-events: all;
}

.popup-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

.empresa-buttons {
	/*   position: absolute;
  right: 10px;
  top:10px; */
}

.popup-content {
	/* 	border-top: 4px solid rgba(0,0,0,.15); */
	/*   padding: 15px; */
	/*   padding-top:10px; */
}


.row-form-group {
	display: flex;
	gap: 40px;
}

.form-group {
	margin-bottom: 15px;
}


.line {
	display: flex;
	/*   gap: 20px; */
}

.card-json {
	display: flex;
	flex-direction: column;
	gap: 17px;
}

.card-json>.line:not(:last-child) {
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.chave {
	/* 	background: green; */
	/* 	opacity: .8; */
	width: 50%;
	color: #0056b3;
	font-weight: 600;
	text-transform: uppercase;
	display: flex;
	white-space: nowrap;
	align-items: center;
	/* Alinha verticalmente o conteúdo ao centro */
}

.valor {
	/* 	background: orange; */
	white-space: nowrap;
}



/* Esconde a checkbox padrão */
.vizualizado-checkbox {
	appearance: none;
	-webkit-appearance: none;
	background-color: #fff;
	border: 2px solid #ccc;
	padding: 9px;
	border-radius: 4px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	margin-left: 15px;
	margin-top: 3px;
	transition: all 0.2s ease-in-out;
}

/* Quando a checkbox está marcada */
.vizualizado-checkbox:checked {
	background-color: #4CAF50;
	border-color: #4CAF50;
}

/* Checkmark */
.vizualizado-checkbox:checked::after {
	content: '✔';
	color: white;
	font-size: 12px;
	position: absolute;
	top: 1px;
	left: 3px;
}

/* Efeito ao passar o mouse */
.vizualizado-checkbox:hover {
	border-color: #888;
}

/* Estilo normal da linha */
tr.marked {
	background-color: #e0f7e9 !important;
	/* verde claro */
	transition: background-color 0.4s ease;
}

/* Efeito extra (só se quiser) */
tr.marked td {
	animation: pulse 0.4s ease;
}

@keyframes pulse {
	0% {
		background-color: #c8f5d5;
	}

	50% {
		background-color: #a5ebbede;
	}

	100% {
		background-color: #e0f7e9;
	}
}



.erro-senha {
	position: relative;
}

.erro-senha::after {
	content: "⚠️";
	color: orange;
	cursor: help;
	font-size: 12px;
	margin-left: 3px;
	position: absolute;
	top: 0px;
}


.erro-senha.type-2::after {
	font-size: 15px;
	/* top: -1px; */
}


.link-acoes {
	color: #7e3ff2;
	/* roxo principal */
	text-decoration: none;
	font-weight: normal;
	transition: all 0.2s ease;
}

.link-acoes:hover {
	text-decoration: underline;
	color: #5228b4 !important;
	/* roxo mais escuro */
}


td {
    vertical-align: middle;
}

td > * {
    display: inline-block;
    vertical-align: middle;
}

/* .senha-column .material-symbols-outlined {
    vertical-align: middle;
    margin-left: 4px;
}
                */