.tab-container {
	width: 100%;
}
.tabs {
	display: flex;
}
.tab {
	padding: 10px 10px;
	cursor: pointer;
	border: 1px solid #ccc;
	background: #f8f8f8;
	font-size: 14px;
	text-wrap: nowrap;
}
.tab-resumo {
	color: darkblue;
	background: aliceblue;
}
.tab-gap {
	padding: 10px 0px;
	border-bottom: 1px solid #ccc;
}
.tab-gap:last-child {
	width: 100%;
}
.tab.active {
	background: white;
	border-top: 2px solid #666;
	border-bottom: 2px solid white;
}
.tab-resumo.active {
	background: aliceblue;
	border-top: 2px solid darkblue;
	border-bottom: 2px solid aliceblue;
}
.tab-content {
	display: none;
	padding: 20px 20px 0px 20px;
	border-width: 0px 1px;
	border-style: solid;
	border-image: linear-gradient(
			to bottom,
			#ccc,
			rgba(0, 0, 0, 0)
	) 1 100%;
}
.tab-content-resumo {
	background: aliceblue;
}
.tab-content.active {
	display: block;
	clear: both;
}
.questoes ul{
	padding-left: 10px;
}
.questoes ul li {
	margin-bottom: 10px;
	list-style-type: none;
	text-align: left;
}
.questoes ul li label { font-size: 14px; cursor: pointer; }
.separador-arabesco {
	text-align: center;
	font-size: 20px;
	color: #999;
	margin: 20px 0;
}

@keyframes dots {
	0% { content: ""; }
	25% { content: "."; }
	50% { content: ".."; }
	75% { content: "..."; }
	100% { content: "..."; }
}

.loading::after {
	content: "";
	animation: dots 1.5s steps(1) infinite;
}

.tooltip-visible {
	position: absolute;

	opacity: 0.95;
	top: 26px; /* Ajuste para posicionar acima do checkbox */
	left: -20px;
	background-color: darkblue;
	border: 1px solid darkblue;
	color: white;
	font-weight: bold;
	border-radius: 8px;
	padding: 5px 10px;
	width: 200px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
	font-size: 12px;
	z-index: 100;
}

.tooltip-visible::after {
	content: '';
	position: absolute;
	top: -13px;
	left: 22px;
	border-width: 7px;
	border-style: solid;
	border-color: transparent transparent darkblue transparent; /* Cor da seta */
}

.tooltip-visible p {
	margin: 5px;
}

.tooltip-visible button {
	background-color: aliceblue;
	color: darkblue;
	border: none;
	border-radius: 4px;
	padding: 4px 8px;
	cursor: pointer;
	font-size: 12px;
	font-weight: bold;
	display: block;
	text-align: right;
	margin-left: auto;
}

.tooltip-visible button:hover {
	background-color: azure;
}

.tooltip-hidden {
	display: none; /* Oculta o tooltip */
}

@keyframes pulseBackground {
	0% {
		background-color: aliceblue;
	}
	50% {
		background-color: #b3d9ff;
	}
	100% {
		background-color: aliceblue;
	}
}