/** Shopify CDN: Minification failed

Line 13:0 Comments in CSS use "/* ... */" instead of "//"
Line 14:0 Comments in CSS use "/* ... */" instead of "//"
Line 15:0 Comments in CSS use "/* ... */" instead of "//"
Line 34:43 Expected ":"
Line 38:43 Expected ":"
Line 78:0 Comments in CSS use "/* ... */" instead of "//"
Line 79:0 Comments in CSS use "/* ... */" instead of "//"
Line 80:0 Comments in CSS use "/* ... */" instead of "//"

**/
//**********************************************//
//    Sección de Estilos para Sucursal Card    //
//********************************************//
.sucursal-card{
    width: 50%;
    overflow: hidden;
    transition: all ease-in-out .3s;
}
.sucursal-card{
    width: 50%;
    overflow: hidden;
    transition: all ease-in-out .3s;
}

.sucursal-card:hover{
    cursor: pointer;
}
.sucursal-card:hover .sucursal-card__img-container__img {
    transform: scale(1.4);
}
.sucursal-card:hover .sucursal-card__title-container {
    background: rgba(0, 0, 0, 0.70); Efecto Glassmorphism 
    backdrop-filter: blur(5px);
}
.sucursal-card--selected .sucursal-card__title-container {
    background: rgba(0, 0, 0, 0.70); Efecto Glassmorphism 
    backdrop-filter: blur(5px);
}
.sucursal-card--selected .sucursal-card__img-container__img{
    transform: scale(1.4);
}
.sucursal-card--selected .sucursal-card__title {
    color: white;
}

.sucursal-card:hover .sucursal-card__title{
    color: white;
}
.sucursal-card__img-container__img{
    width: 100%;
    height: 100%;
    transform:scale(1.2);
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: all ease-in-out .3s;
}
.sucursal-card__title-container{
    bottom: 2%;
    left: -1%;
    
    width: max-content;
    height: 60px;
    
    padding: 16px;
    border-radius: 8px;

    transition: all ease-in-out .3s;
}
.sucursal-card__title{
    font-size: 1.8em;
    font-style: bold;
    color: transparent;
    transition: all ease-in-out .3s;
}

//**********************************************//
//   Sección de Estilos para Sucursal Detail   //
//********************************************//
.sucursal-detail {
    width: 100%;
    min-height: 100px;
    max-height: 1000px;
    height: 100%;
    background-color: #f8f8f8;
    border: none;
    padding: 4px;
    border-radius: 16px;
    overflow: hidden;
} 

.sucursal-detail {
    width: 100%;
    min-height: 100px;
    max-height: 1000px;
    height: 100%;
    background-color: #f8f8f8;
    border: none;
    padding: 4px;
    border-radius: 16px;
    overflow: hidden;
} 


.sucursal-detail__map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.sucursal-detail__map-container__map {
    width: 100%;
    height: 100%;
}

.sucursal-banner{
    position: relative;
    top: -1%;
    left: -1%;
    width: 103%;
    height: 250px;
    margin: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    background-image: url("https://firebasestorage.googleapis.com/v0/b/sconliestore.appspot.com/o/Publicidad%2FOFERTAS.gif?alt=media&token=78c0caf4-7fad-4b8a-84a7-6bb356691e79");
    mask-image: linear-gradient(black 80%, transparent);
    z-index: 6;
}
/*
.sucursal-detail__banner {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    height: 200px;
    
    background: rgba(255, 255, 255, 0.1); Efecto Glassmorphism 
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    
    z-index: 7;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
*/
.sucursal-detail__banner {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 125px;

    
    background: #2957A4;
    background: linear-gradient(45deg,rgba(41, 87, 164, 1) 0%, rgba(117, 151, 191, 1) 50%, rgba(41, 87, 164, 1) 100%);
    z-index: 7;
}

.banner-content{
    display: flex;
    align-items: center;
    justify-content: center;

    height: 80%;
    width: 100%;
    text-align:center;
}
.banner-content h3{
    color: #fff;
    font-size: 36px;
}

.sucursal-stats-card {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 250px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
/*
.sucursal-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    z-index: 5;
    pointer-events: none;
}
*/
@media (min-width: 769px) and (max-width: 1200px){
    .sucursal-card__title{
        font-size: 1.5em;
    }    
}
@media (min-width: 769px) and (max-width: 991px){
    .sucursal-detail  {
        height: 400px;
    }
}
@media (min-width: 577px) and (max-width: 768px){
    .sucursal-detail  {
        height: 400px;
    }
    .sucursal-card__title-container{
        bottom: 3%
    }
    .sucursal-card__title{
        font-size: 1.25em;
    }
    .banner-content h3{
        font-size: 24px;
    }
}
@media (min-width: 0px) and (max-width: 576px) {
    .sucursal-detail  {
        height: 400px;
    }
    .sucursal-card__title-container{
        bottom: -5%;
        left: -1%;
    }
    .sucursal-card__title{
        font-size: 1em;
    }
    .sucursal-banner{
        height: 200px;
    }

    .banner-content h3{
        font-size: 20px;
    }
}