/* Estilos GOOGLE MAPS */
.gm-style img {
    max-width: none !important;
}
.gmnoprint {
    top: 72px;
    bottom: 0 !important;
    height: 30px;
}

.gm-style-mtc button{
    padding: 0px 10px !important;
    height: 25px !important;
    margin-right: 5px !important;
}

.ssQIHO-checkbox-menu-item{
    padding: 2px 2px 2px 2px !important;
    font-size: 16px !important;
}
/* FIN estilos GOOGLE MAPS */
#localizador-map p {
    margin-block-end: 0;
    white-space: normal;
}
#localizador-map {
    font-family: "Helvetica Neue LT Std MdCn", Sans-serif;
    background-color: #fff;
    width: 100%;
    height: auto;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.columns-map {
    display: flex;
    height: 600px;
    gap: 20px;
}
#map-map {
    flex-grow: 1;
}

/* Estilos del BUSCADOR */
#localizador-map input[type="search"]{
    padding: 5px 10px;
    border: 0;
    border-bottom: 2px solid #000;
    border-radius: 0;
}
#localizador-map input[type=search]::placeholder {
    color: #000;
}
#localizador-map input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}
#localizador-map input[type=search]:focus {
    outline: none ;
}
/* FIN Estilos del BUSCADOR */

/* Estilos del LISTADO */
#listing-map {
    width: 35%;
    overflow-y: auto;
    padding-left: 10px;
    direction: rtl;
}
#listing-map::-webkit-scrollbar {
    width: 3px;
    background-color: #fff;
    border-radius: 20px;
}
#listing-map::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 6px;
}
/* FIN Estilos del LISTADO */

/* Estilos del PUNTOS */
#localizador-map button.point-map {
    width: 100%;
    padding: 10px;
    color: #000;
    border: 0;
    background-color: #fff;
    border-bottom: 2px solid #000;
    border-radius: 0;
    text-align: start;
    direction: ltr;
}
#localizador-map button.point-map:hover{
    background-color: transparent;
}
#localizador-map button.point-map.active {
    background-color: #000;
    color: #fff;
}
.point-info_direction {
    margin-top: 10px;
}
.point-info{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.point-column_left {
    display: flex;
    gap: 10px;
}
.point-info_title {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-family: "GT PRESSURA", sans-serif;
}
.logo, .logo-active {
    height: 40px !important;
}
a.point-web {
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
}
button.point-map.active a.point-web {
    color: #fff;
}
a.point-web:hover, button.point-map.active a.point-web:hover {
    color: #e8ca4d;
}
/* FIN Estilos del PUNTOS */
/* Estilos del NO ENCONTRADO */
.no-result{
    max-width: 295px;
    text-align: center;
    margin: 10px auto 0;
}
.no-result_img{
    width: 100px;
    margin: 20px auto 0;
    display: block; 
}
/* FIN Estilos del NO ENCONTRADO */
/* Estilos de la PROMOCION */
.promo-map, .promo-banner{
    width: 100%;
    margin-top: 10px;
    border-radius: 2px;
}
.promo-no-effect, .promo-content{
    text-align: center;
    padding: 4px 0;
    font-size: 0.75rem;
    font-weight: 700;
}
.promo-banner {
    overflow: hidden;
    white-space: nowrap;
}
.promo-content {
    display: inline-block;
    margin-right: 50px;
    position: relative;
    left: 0;
}
/* FIN Estilos de la PROMOCION */

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ESTILOS DESPLEGABLE */
.custom-select-wrapper {
    margin-top: 10px;
    position: relative;
    user-select: none;
    width: 100%;
    direction: ltr;
}
.custom-select {
    position: relative;
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 2px;
    padding: 5px 10px;
    width: 100%;
}
.custom-select__trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.custom-select__trigger > span{
    font-family: "Helvetica Neue LT Std MdCn", Sans-serif;
}
.custom-options {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
}
.custom-select.open .custom-options {
    display: block;
}
.custom-option {
    display: block;
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #000;
    margin-top: -1px;
}
.custom-option:hover {
    background-color: #000;
    color: #fff;
}
.arrow {
    content: '';
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
}
/* FIN ESTILOS DESPLEGABLE */
@media (max-width: 1024px) {
    #listing-map {
        width: 40%;
    }
}
@media (max-width: 767px) {
    .columns-map{
        flex-direction: column-reverse;
    }
    #listing-map{
        border-bottom: 2px solid #e5e5e5; /* borde para el corte de provincias */
        width: 100%;
        max-height: 250px;
        overflow-x: hidden;
        padding: 10px;
    }
    .logo, .logo-active {
        height: 34px !important;
    }
    .custom-select{
        width: 90%;
        margin: auto;
    }
}