/* ----- barra de select ----- */
.select-8,
.select-9 {
    position: relative;
}

.select-8 { width: 120px; }
.select-9 { width: 180px; }

.select-8 #selected-value-8,
.select-9 #selected-value-9 {
    margin-left: 10px;
}

#state-select label,
#city-select label {
    font-size: 0.75rem;
    letter-spacing: 0.0225rem;
}

.select-8 #select-button,
.select-9 #select-button {
    display: flex;
    padding: .3rem .7rem;
    align-items: center;
    justify-content: space-between;

    border-radius: 30px;
    background-color: #FFF;
}

#selected-value-8,
#selected-value-9 {
    font-family: 'Montserrat Semibold', sans-serif;
    font-size: 14px;
    color: var(--blue);
    letter-spacing: 0.02625rem;
}

#chevrons svg {
    width: 1.2rem;
    height: 1.2rem;
}

.select-8 #chevrons,
.select-9 #chevrons {
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
}

#chevrons [data-lucide="chevron-up"] {
    display: none;
}

#options-view-button-8:checked+#select-button #chevrons [data-lucide="chevron-down"],
#options-view-button-9:checked+#select-button #chevrons [data-lucide="chevron-down"] {
    display: none;
}

#options-view-button-8:checked+#select-button #chevrons [data-lucide="chevron-up"],
#options-view-button-9:checked+#select-button #chevrons [data-lucide="chevron-up"] {
    display: block;
}

#state-select,
#city-select {
    position: relative;
}

#options-view-button-8,
#options-view-button-9 {
    all: unset;

    position: absolute;
    inset: 0;

    cursor: pointer;
    z-index: 3;
}

#options-8,
#options-9 {
    margin-top: .25rem;

    border: 1px solid var(--light-blue-2);
    border-radius: 1rem;
    background-color: var(--white);

    display: none;

    position: absolute;
    z-index: 1;

    font-size: 13px;
	
	max-height: 200px;
	overflow-y: auto;
}

#options-8 { width: 120px; }
#options-9 { width: 180px; }


/* ----- bloco de opcoes ----- */
.option-8,
.option-9 {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: .5rem;

    padding: .4rem 1rem;
    border-bottom: 1px solid var(--light-blue-2);

    position: relative;
	font-family: 'Montserrat Semibold', sans-serif;
    color: var(--blue);
}

/* .option-8 .label:hover,
.option-9 .label:hover {
    font-family: 'Montserrat Semibold', sans-serif;
    color: var(--blue);
} */

.option-8:has(input:checked),
.option-8:hover,
.option-9:has(input:checked),
.option-9:hover {
/*     background-color: #c9c9c9; */
	color: var(--orange-2);
	font-family: 'Montserrat Bold', sans-serif;
}

.option-8:first-child,
.option-9:first-child {
    border-radius: 1rem 1rem 0 0;
}

.option-8:last-child,
.option-9:last-child {
    border-radius: 0 0 1rem 1rem;
    border-bottom: 0;
}

.option-8 input[type="radio"],
.option-9 input[type="radio"] {
    all: unset;

    position: absolute;
    inset: 0;

    cursor: pointer;
}

#state-select:has(#options-view-button-8:checked)+#options-8,
#city-select:has(#options-view-button-9:checked)+#options-9 {
    display: block;
}