*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* -------------------------------------------------- */
.chevrons img{
    width: 20px;
}
/* -------------------------------------------------- */

:root{
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

.select {
    position: relative;
    pointer-events: all;
}




.select-button{
    margin-top: .5rem;
    display: flex;
    padding: 7px;
    align-items: center;
    justify-content: space-between;

    border-radius: 2px;
    border: solid 1px #4f586c;
    background-color: #232734;

    font-family: roboto;
}

.select-value{
    color: #9a9da3;
    font-size: 0.9em;
    letter-spacing: 0.02625rem;
    font-family: roboto;
}

/* .chevrons svg{
    width: 1rem;
    height: 1rem;
} */

.chevrons {
    color: #afabb6;
    width: 12px;
    height: 12px;

}

.chevrons img{
    width: 12px;
    height: 12px;
}

/* -------------- */
.chevrons [data-lucide="chevron-up"]{
    display: none;
}
/* por enquanto fica  */

.chevrons [data-indicator="up"]{
    display: none;
}
/* ------------------------------ */



.options-view-button:checked + .select-button .chevrons{
    color: #828282;
}
/* .options-view-button:checked + .select-button .chevrons img.c-down{
    display: none;
}
.options-view-button:checked + .select-button .chevrons img.c-up{
    display: block;
} */

.category-select{
    position: relative;
}

.options-view-button{
    all: unset;

    position: absolute;
    inset: 0;

    cursor: pointer;
    z-index: 3;

}

.box-options{
    width: 100%;
    margin-top: .25rem;
    border-radius: 2px;
    background-color: #232734;
    border: solid 1px #4f586c;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    position: absolute;
    /* inset: 0; */
    left: 0px;
    top: 32px;
    font-family: roboto;
}

.option{
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #e9e9e9;

    padding: 10px;
    border-bottom: 1px solid #e0e0e00e;

    position: relative;
}


.option img{
    width: 20px;
    height: 20px;
}
.option img:last-child{
    margin-left: auto;
}

.option:has(input:checked), .option:hover{
    border-bottom: 1px solid #252529;
    background-color: #1c1f2c;
}

.option:has(input:focus){
    outline: 1px solid #A881e6;
}

.option img.check{
    display: none;
}

.option:has(input:checked) img.check {
    display: block;
}

.option input[type="radio"]{
    all: unset;

    position: absolute;
    inset: 0;

    cursor: pointer;

}

/* .category-select:has(.options-view-button:checked) + .box-options{
    display: block;
} */
.select:has(.options-view-button:checked){
    z-index: 11;
}



/* ================= PARA CONCORADAR COM OS ESTILOS DO SELLTRACKER ================ */
input[type='checkbox']{
    background-color: transparent;
}
.select{
    margin-bottom: 10px;
}