.tt-container-6fcb446f {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: inherit;
}

.tt-tabs-header {
    display: flex;
    flex-wrap: wrap;
}

.tt-tab-link {
    flex: 1;
    background: #f8fafc;
    border: 1px solid #D5D8FF;
    border-bottom: 1px solid #B3B7F6;
    padding: 20px 20px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 100px;
	border-radius: 0;
}

.tt-tab-link.active {
    background: #ffffff;
    color: #4c1d95;
    border: 1px solid #B3B7F6;
	border-bottom: none;
    position: relative;
}

.tt-tab-link:hover {
	border-color: #B3B7F6;
}

.tt-tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
}

.tt-tabs-content {
    background: #fff;
	border: #B3B7F6 solid;
    border-width: 0 1px 1px 1px;
}

.tt-tab-pane {
    display: none;
    animation: fadeEffect 0.5s;
}

.tt-tab-pane.active {
    display: block;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tt-posts-list {
    list-style: none;
    padding: 0 2em !important;
    margin: 0;
}

.tt-post-item {
    padding: 15px 0;
    border-bottom: 1px solid #B3B7F6;
}

.tt-post-item:last-child {
    border-bottom: none;
}

.tt-item-info {
    color: #707070;
    line-height: 1.6;
}

.tt-item-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #7203DD;
    font-weight: 400;
    text-decoration: none;
	font-family: Poppins;
}

.tt-item-link:hover {
    text-decoration: underline;
}

.tt-item-link svg {
    width: 21px;
	height: auto;
}

.tt-item-info .text-value-orgao {
	text-transform: uppercase;
}