/**
 * Classes para o componente table-header-ordenacao
 * 
 */

.exon-th-ordenacao {
}

.exon-th-ordenacao__container {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

.exon-th-ordenacao__text {
    flex-grow: 1;
    display: inline-block;
}

.exon-th-ordenacao__arrow-container {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    flex-grow: 0.5;
}

.exon-th-ordenacao__arrow {
    opacity: 0.25;
}

.exon-th-ordenacao__arrow:hover {
    opacity: 1;
}

.exon-th-ordenacao__arrow--active {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    opacity: 1;
    background-image: linear-gradient(
        90deg,
        rgba(109,191,12,1) 8%,
        rgba(65,120,0,1) 10%,
        rgba(147,255,0,1) 100%
    );
}
