.encontre-consultor-maps input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--form-background);
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 2.25em;
    height: 2.25em;
    border: 1px solid currentColor;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}
.encontre-consultor-maps input[type="radio"]::before {
    content: "";
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    /* Windows High Contrast Mode */
    background-color: #0AE64C;
}
.encontre-consultor-maps input[type="radio"]:checked::before {
    transform: scale(1);
}
.encontre-consultor-maps input[type="radio"]:focus {
    outline: max(1px, 0.05em) solid currentColor;
    /* outline-offset: max(2px, 0.15em); */
}

.encontre-consultor-maps .overflow-y-scroll::-webkit-scrollbar {
    width: 12px;
}

.encontre-consultor-maps .overflow-y-scroll::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, white, white);
    border-radius: 10px;
    margin-bottom: 20px;

}

.encontre-consultor-maps .overflow-y-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #0AE64C, #0AE64C);
    border-radius: 10px;
    border: 3px solid white;
}

.encontre-consultor-maps .overflow-y-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, white, white);
    cursor: pointer;
}
