.m-onde-estamos-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: 0.15em solid currentColor;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}
.m-onde-estamos-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;
}
.m-onde-estamos-maps input[type="radio"]:checked::before {
    transform: scale(1);
}
.m-onde-estamos-maps input[type="radio"]:focus {
    outline: max(1px, 0.05em) solid currentColor;
    /* outline-offset: max(2px, 0.15em); */
}

.m-onde-estamos-maps .overflow-y-scroll::-webkit-scrollbar {
    width: 12px;
    margin-right: -20px;
}

.m-onde-estamos-maps .overflow-y-scroll::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, white, white);
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}

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

.m-onde-estamos-maps .overflow-y-scroll::-webkit-scrollbar-thumb:hover {
    /* background: linear-gradient(to bottom, white, white); */
    cursor: pointer;
}

.m-onde-estamos-maps details summary::-webkit-details-marker {
    display: none;
}

.m-onde-estamos-maps details summary::after {
    content: ">";
    float: right;
    transition: transform 0.5s ease-in-out, color 0.5s ease-in-out;
    font-size: 26px;
    font-weight: 300;
}

.m-onde-estamos-maps details[open] summary {
    font-weight: 600;
    color: #0B6E29; /* Cor do ícone quando o details está aberto */
    transition: color 0.5s ease-in-out;
}

.m-onde-estamos-maps details[open] summary::after {
    transform: rotate(90deg);
    color: #0B6E29; /* Cor do ícone quando o details está aberto */
}
