/* ----- barra de select ----- */
.select-7 {
    width: 100%;
    position: relative;
}

#profile-select label {
    font-size: 0.75rem;
    letter-spacing: 0.0225rem;
}

.select-7 #select-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .3rem .7rem;
    border-radius: 30px;
    background-color: var(--white);
}

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

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

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

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

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

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

#profile-select {
    position: relative;
}

#options-view-button-7 {
    all: unset;

    position: absolute;
    inset: 0;

    cursor: pointer;
    z-index: 3;
}

#options-7 {
    margin-top: .25rem;

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

    display: none;

    width: 100%;
    position: absolute;
    z-index: 1;

    font-size: 13px;
}


/* ----- bloco de opcoes ----- */
.option-7 {
    display: flex;
    align-items: center;
    gap: .5rem;

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

    position: relative;
}

.option-7 .label {
    font-family: 'Montserrat Semibold', sans-serif;
    color: var(--blue);
}

.option-7:has(input:checked),
.option-7:hover {
    background-color: var(--light-blue-2);
}

.option-7:first-child {
    border-radius: 1rem 1rem 0 0;
}

.option-7:last-child {
    border-radius: 0 0 1rem 1rem;
    border-bottom: 0;
}

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

    position: absolute;
    inset: 0;

    cursor: pointer;
}

#profile-select:has(#options-view-button-7:checked)+#options-7 {
    display: block;
}