/* .cms-localizador-de-tiendas h1.page-title {
    font-size: 20px;
    font-weight: 600;
} */

.cms-localizador-de-tiendas .zona_tiendas {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cms-localizador-de-tiendas .lista_tiendas {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.cms-localizador-de-tiendas .lista_tiendas .tienda {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    background: var(--light-background);
    padding: 15px;
    max-width: 390px;
}

.cms-localizador-de-tiendas .lista_tiendas .tienda .info_tienda {
    margin-top: 15px;
}

.cms-localizador-de-tiendas .lista_tiendas .tienda .direccion_tienda {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
}

.cms-localizador-de-tiendas .lista_tiendas .tienda .telefono_container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 10px;
}
.cms-localizador-de-tiendas .lista_tiendas .tienda .telefono_container span:first-child {
    font-weight: 600;
}

.cms-localizador-de-tiendas .lista_tiendas .tienda .telefono_container span,
.cms-localizador-de-tiendas .lista_tiendas .horario_tienda span {
    font-size: 16px;
    font-weight: 300;
}

.cms-localizador-de-tiendas .lista_tiendas .horario_tienda span.horario_titulo {
    font-weight: 600;
}
.cms-localizador-de-tiendas .lista_tiendas .horario_tienda span.dias {
    font-weight: 400;
}
.cms-localizador-de-tiendas .lista_tiendas .horario_tienda span.horas {
    padding-left: 10px;
}
.cms-localizador-de-tiendas .lista_tiendas .horario_tienda {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.cms-localizador-de-tiendas .lista_tiendas .tienda .ver_mapa {
    width: 100%;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 10px 15px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}
.cms-localizador-de-tiendas .lista_tiendas .tienda .ver_mapa::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--primary-background);
    transition: opacity 0.5s linear;
    opacity: 0;
    text-align: center;
    padding: 10px 15px;
}
.cms-localizador-de-tiendas .lista_tiendas .tienda .ver_mapa:hover::before {
    opacity: 1;
}
.cms-localizador-de-tiendas .lista_tiendas .tienda .ver_mapa span {
    position: relative;
}

@media(min-width: 768px){
    .cms-localizador-de-tiendas .zona_tiendas {
        text-align: left;
    }
    .cms-localizador-de-tiendas .lista_tiendas {
        flex-direction: row;
        align-content: unset;
        justify-content: space-between;
    }

    
}

@media(min-width: 1024px){

    .cms-localizador-de-tiendas .lista_tiendas .tienda {
        flex-direction: row;
        max-width: unset;
        width: calc(50% - 38px);
        padding: 0;
        justify-content: space-between;
    }

    .cms-localizador-de-tiendas .lista_tiendas .foto_tienda_container {
        width: 60%;
        text-align: right;
    }

    .cms-localizador-de-tiendas .lista_tiendas .tienda .info_tienda {
        width: 40%;
        padding: 15px 0 0 15px;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .cms-localizador-de-tiendas .lista_tiendas .tienda .ver_mapa_container {
        width: calc(100% - 15px);
    }

    .cms-localizador-de-tiendas .lista_tiendas .tienda .ver_mapa {
        margin-bottom: 15px;
    }
}

@media(min-width: 1400px){
    .cms-localizador-de-tiendas .lista_tiendas .foto_tienda_container img {
        height: 100%;
    }   
}


/* MAPA */
#mapa_tienda{
    display:none;
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.6);
}

#mapa_tienda .mapa{
    width:90%;
    max-width:800px;
    height:80vh;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

#mapa_tienda .cabecera{
    flex:0 0 auto;
}

#mapa_tienda .cabecera button{
    width: 100%;
    background: var(--primary);
    border: 0;
    border-radius: none;
    height: 40px;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
}
#mapa_tienda .cabecera button:hover {
    background: var(--primary-background);
}

#mapa_tienda .cuerpo{
    flex:1 1 auto;
}
