.box-locales {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
	padding: 30px;
}
.box-locales .containter-map_local div#map_local {
    width: 650px;
    height: 500px;
}
.box-locales .local-box h3 {
    font-size: 1rem;
    letter-spacing: 1px;
}
.box-locales .local-box {
    box-shadow: 2px 3px 10px #c696057d;
    border-radius: 15px;
    transition: all .2s ease-in-out;
    width: 98% !important;
    padding: 15px;
    margin-bottom: 0em;
    text-align: left;
    background-color: #fffefe;
    height: 180px;
    min-height: 170px;
    max-height: 180px;
    color: #000;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.box-locales .local-box h3, .box-locales .local-box p{
	margin:0;
}
.local-box img {
    width: 140px;
    height: 135px;
}
.local-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
	margin-left: 20px;
}
.local-info .bi::before {
  margin-right: 8px;
	color:#000;
}
.local-info a {
    color: #000;
    text-decoration: none;
}
a.button-n.bi.bi-geo-alt-fill {
    background-color: #d29e00;
    color: #fff;
    padding: 4px;
    border-radius: 7px;
	font-size: 13px;
}
a.button-n.bi.bi-geo-alt-fill:hover {
    background-color: #000;
    color: #fff;

}
.links-adicionales {
    margin-top: 10px;
}
p.bi.bi-geo-alt-fill {
    font-size: 15px;
    letter-spacing: -1px;
}
.local-info a.button-n.bi::before {
	color:#fff!important;
}
#localesList {
  display: flex;
  flex-direction: column;
  max-height: 500px;
  overflow-y: auto;
  padding: 10px;
	background-color: #fff;
  border-radius: 5px;
  width: 580px;
	overflow-x: hidden;

}
.containter-map_local {
    padding: 0px;
}
@media only screen and (max-width: 768px) {
    .box-locales {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .box-locales .containter-map_local div#map_local {
        width: 100%;
        height: 300px; /* Ajusta la altura para que sea más razonable en pantallas pequeñas */
    }

    .box-locales .local-box {
        width: 90%;
        padding: 10px;
        margin: 10px 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto; /* Permitir altura dinámica */
        min-height: auto;
        max-height: none;
    }

    .box-locales .local-box h3 {
        font-size: 0.9rem;
    }

    .local-box img {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
    }

    .local-info {
        margin: 10px 0 0 0;
        text-align: center;
        margin-left: 0; /* Asegurar que esté centrado */
    }

    #localesList {
        width: 100%;
        max-height: none; /* Eliminar scroll */
        overflow-y: visible;
        padding: 0;
        background-color: transparent; /* Opcional, puede ajustarse */
        box-shadow: none; /* Elimina sombra si no es necesaria */
    }

    .containter-map_local {
        padding: 0;
        text-align: center; /* Centrar contenido */
    }

    a.button-n.bi.bi-geo-alt-fill {
        font-size: 12px;
    }

    p.bi.bi-geo-alt-fill {
        font-size: 14px;
    }
}
.local-info h3 {
  color: #d29e00;
}